@volcengine/pulumi 0.0.42 → 0.0.44-alpha.1769951655

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 (394) hide show
  1. package/alb/accessLog.d.ts +79 -0
  2. package/alb/accessLog.js +76 -0
  3. package/alb/accessLog.js.map +1 -0
  4. package/alb/acl.d.ts +28 -0
  5. package/alb/acl.js +6 -0
  6. package/alb/acl.js.map +1 -1
  7. package/alb/acls.d.ts +13 -0
  8. package/alb/acls.js +1 -0
  9. package/alb/acls.js.map +1 -1
  10. package/alb/alb.d.ts +151 -4
  11. package/alb/alb.js +51 -4
  12. package/alb/alb.js.map +1 -1
  13. package/alb/albs.d.ts +24 -0
  14. package/alb/albs.js +2 -0
  15. package/alb/albs.js.map +1 -1
  16. package/alb/allCertificates.d.ts +151 -0
  17. package/alb/allCertificates.js +71 -0
  18. package/alb/allCertificates.js.map +1 -0
  19. package/alb/cacertificate.d.ts +8 -0
  20. package/alb/cacertificate.js +2 -0
  21. package/alb/cacertificate.js.map +1 -1
  22. package/alb/certificate.d.ts +26 -0
  23. package/alb/certificate.js +8 -0
  24. package/alb/certificate.js.map +1 -1
  25. package/alb/certificates.d.ts +33 -0
  26. package/alb/certificates.js +10 -0
  27. package/alb/certificates.js.map +1 -1
  28. package/alb/customizedCfg.d.ts +14 -0
  29. package/alb/customizedCfg.js +2 -0
  30. package/alb/customizedCfg.js.map +1 -1
  31. package/alb/customizedCfgs.d.ts +13 -0
  32. package/alb/customizedCfgs.js +1 -0
  33. package/alb/customizedCfgs.js.map +1 -1
  34. package/alb/getAcls.d.ts +13 -0
  35. package/alb/getAcls.js +1 -0
  36. package/alb/getAcls.js.map +1 -1
  37. package/alb/getAlbs.d.ts +24 -0
  38. package/alb/getAlbs.js +2 -0
  39. package/alb/getAlbs.js.map +1 -1
  40. package/alb/getAllCertificates.d.ts +149 -0
  41. package/alb/getAllCertificates.js +68 -0
  42. package/alb/getAllCertificates.js.map +1 -0
  43. package/alb/getCertificates.d.ts +33 -0
  44. package/alb/getCertificates.js +10 -0
  45. package/alb/getCertificates.js.map +1 -1
  46. package/alb/getCustomizedCfgs.d.ts +13 -0
  47. package/alb/getCustomizedCfgs.js +1 -0
  48. package/alb/getCustomizedCfgs.js.map +1 -1
  49. package/alb/getHealthCheckTemplates.d.ts +33 -0
  50. package/alb/getHealthCheckTemplates.js +10 -0
  51. package/alb/getHealthCheckTemplates.js.map +1 -1
  52. package/alb/getListenerHealths.d.ts +103 -0
  53. package/alb/getListenerHealths.js +58 -0
  54. package/alb/getListenerHealths.js.map +1 -0
  55. package/alb/getListeners.d.ts +25 -0
  56. package/alb/getListeners.js +2 -0
  57. package/alb/getListeners.js.map +1 -1
  58. package/alb/getServerGroupServers.d.ts +20 -0
  59. package/alb/getServerGroupServers.js +4 -0
  60. package/alb/getServerGroupServers.js.map +1 -1
  61. package/alb/getServerGroups.d.ts +25 -0
  62. package/alb/getServerGroups.js +2 -0
  63. package/alb/getServerGroups.js.map +1 -1
  64. package/alb/healthCheckTemplate.d.ts +45 -3
  65. package/alb/healthCheckTemplate.js +10 -0
  66. package/alb/healthCheckTemplate.js.map +1 -1
  67. package/alb/healthCheckTemplates.d.ts +33 -0
  68. package/alb/healthCheckTemplates.js +10 -0
  69. package/alb/healthCheckTemplates.js.map +1 -1
  70. package/alb/healthLog.d.ts +92 -0
  71. package/alb/healthLog.js +82 -0
  72. package/alb/healthLog.js.map +1 -0
  73. package/alb/index.d.ts +24 -0
  74. package/alb/index.js +34 -2
  75. package/alb/index.js.map +1 -1
  76. package/alb/listener.d.ts +101 -3
  77. package/alb/listener.js +26 -0
  78. package/alb/listener.js.map +1 -1
  79. package/alb/listenerDomainExtension.d.ts +41 -5
  80. package/alb/listenerDomainExtension.js +6 -3
  81. package/alb/listenerDomainExtension.js.map +1 -1
  82. package/alb/listenerHealths.d.ts +105 -0
  83. package/alb/listenerHealths.js +61 -0
  84. package/alb/listenerHealths.js.map +1 -0
  85. package/alb/listeners.d.ts +25 -0
  86. package/alb/listeners.js +2 -0
  87. package/alb/listeners.js.map +1 -1
  88. package/alb/replaceCertificate.d.ts +226 -0
  89. package/alb/replaceCertificate.js +128 -0
  90. package/alb/replaceCertificate.js.map +1 -0
  91. package/alb/rule.d.ts +107 -0
  92. package/alb/rule.js +47 -0
  93. package/alb/rule.js.map +1 -1
  94. package/alb/serverGroup.d.ts +60 -0
  95. package/alb/serverGroup.js +20 -0
  96. package/alb/serverGroup.js.map +1 -1
  97. package/alb/serverGroupServer.d.ts +18 -6
  98. package/alb/serverGroupServer.js +2 -0
  99. package/alb/serverGroupServer.js.map +1 -1
  100. package/alb/serverGroupServers.d.ts +20 -0
  101. package/alb/serverGroupServers.js +4 -0
  102. package/alb/serverGroupServers.js.map +1 -1
  103. package/alb/serverGroups.d.ts +25 -0
  104. package/alb/serverGroups.js +2 -0
  105. package/alb/serverGroups.js.map +1 -1
  106. package/alb/tlsAccessLog.d.ts +92 -0
  107. package/alb/tlsAccessLog.js +82 -0
  108. package/alb/tlsAccessLog.js.map +1 -0
  109. package/clb/accessLog.d.ts +122 -0
  110. package/clb/accessLog.js +86 -0
  111. package/clb/accessLog.js.map +1 -0
  112. package/clb/acl.d.ts +16 -0
  113. package/clb/acl.js +6 -0
  114. package/clb/acl.js.map +1 -1
  115. package/clb/acls.d.ts +21 -0
  116. package/clb/acls.js +9 -0
  117. package/clb/acls.js.map +1 -1
  118. package/clb/clb.d.ts +78 -2
  119. package/clb/clb.js +13 -1
  120. package/clb/clb.js.map +1 -1
  121. package/clb/clbs.d.ts +79 -1
  122. package/clb/clbs.js +7 -0
  123. package/clb/clbs.js.map +1 -1
  124. package/clb/getAcls.d.ts +21 -0
  125. package/clb/getAcls.js +9 -0
  126. package/clb/getAcls.js.map +1 -1
  127. package/clb/getClbs.d.ts +79 -1
  128. package/clb/getClbs.js +7 -0
  129. package/clb/getClbs.js.map +1 -1
  130. package/clb/getHealthCheckLogProjects.d.ts +62 -0
  131. package/clb/getHealthCheckLogProjects.js +42 -0
  132. package/clb/getHealthCheckLogProjects.js.map +1 -0
  133. package/clb/getHealthCheckLogTopics.d.ts +75 -0
  134. package/clb/getHealthCheckLogTopics.js +46 -0
  135. package/clb/getHealthCheckLogTopics.js.map +1 -0
  136. package/clb/getListenerHealths.d.ts +84 -0
  137. package/clb/getListenerHealths.js +47 -0
  138. package/clb/getListenerHealths.js.map +1 -0
  139. package/clb/getListeners.d.ts +28 -0
  140. package/clb/getListeners.js +2 -0
  141. package/clb/getListeners.js.map +1 -1
  142. package/clb/getRules.d.ts +13 -0
  143. package/clb/getRules.js +1 -0
  144. package/clb/getRules.js.map +1 -1
  145. package/clb/getServerGroups.d.ts +28 -0
  146. package/clb/getServerGroups.js +2 -0
  147. package/clb/getServerGroups.js.map +1 -1
  148. package/clb/healthCheckLogProject.d.ts +63 -0
  149. package/clb/healthCheckLogProject.js +68 -0
  150. package/clb/healthCheckLogProject.js.map +1 -0
  151. package/clb/healthCheckLogProjects.d.ts +64 -0
  152. package/clb/healthCheckLogProjects.js +45 -0
  153. package/clb/healthCheckLogProjects.js.map +1 -0
  154. package/clb/healthCheckLogTopic.d.ts +86 -0
  155. package/clb/healthCheckLogTopic.js +83 -0
  156. package/clb/healthCheckLogTopic.js.map +1 -0
  157. package/clb/healthCheckLogTopics.d.ts +77 -0
  158. package/clb/healthCheckLogTopics.js +49 -0
  159. package/clb/healthCheckLogTopics.js.map +1 -0
  160. package/clb/index.d.ts +27 -0
  161. package/clb/index.js +35 -1
  162. package/clb/index.js.map +1 -1
  163. package/clb/listener.d.ts +254 -3
  164. package/clb/listener.js +71 -0
  165. package/clb/listener.js.map +1 -1
  166. package/clb/listenerHealths.d.ts +86 -0
  167. package/clb/listenerHealths.js +50 -0
  168. package/clb/listenerHealths.js.map +1 -0
  169. package/clb/listeners.d.ts +28 -0
  170. package/clb/listeners.js +2 -0
  171. package/clb/listeners.js.map +1 -1
  172. package/clb/rule.d.ts +59 -4
  173. package/clb/rule.js +23 -3
  174. package/clb/rule.js.map +1 -1
  175. package/clb/rules.d.ts +13 -0
  176. package/clb/rules.js +1 -0
  177. package/clb/rules.js.map +1 -1
  178. package/clb/serverGroup.d.ts +43 -0
  179. package/clb/serverGroup.js +11 -0
  180. package/clb/serverGroup.js.map +1 -1
  181. package/clb/serverGroupServer.d.ts +30 -6
  182. package/clb/serverGroupServer.js +24 -0
  183. package/clb/serverGroupServer.js.map +1 -1
  184. package/clb/serverGroups.d.ts +28 -0
  185. package/clb/serverGroups.js +2 -0
  186. package/clb/serverGroups.js.map +1 -1
  187. package/package.json +1 -1
  188. package/redis/getPitrTimeWindows.d.ts +0 -50
  189. package/redis/getPitrTimeWindows.js +0 -32
  190. package/redis/getPitrTimeWindows.js.map +1 -1
  191. package/redis/pitrTimeWindows.d.ts +0 -50
  192. package/redis/pitrTimeWindows.js +0 -32
  193. package/redis/pitrTimeWindows.js.map +1 -1
  194. package/tls/account.d.ts +71 -0
  195. package/tls/account.js +70 -0
  196. package/tls/account.js.map +1 -0
  197. package/tls/accounts.d.ts +64 -0
  198. package/tls/accounts.js +45 -0
  199. package/tls/accounts.js.map +1 -0
  200. package/tls/alarm.d.ts +74 -14
  201. package/tls/alarm.js +33 -13
  202. package/tls/alarm.js.map +1 -1
  203. package/tls/alarmContentTemplate.d.ts +219 -0
  204. package/tls/alarmContentTemplate.js +135 -0
  205. package/tls/alarmContentTemplate.js.map +1 -0
  206. package/tls/alarmContentTemplates.d.ts +115 -0
  207. package/tls/alarmContentTemplates.js +50 -0
  208. package/tls/alarmContentTemplates.js.map +1 -0
  209. package/tls/alarmNotifyGroup.d.ts +16 -27
  210. package/tls/alarmNotifyGroup.js +2 -29
  211. package/tls/alarmNotifyGroup.js.map +1 -1
  212. package/tls/alarmWebhookIntegration.d.ts +155 -0
  213. package/tls/alarmWebhookIntegration.js +103 -0
  214. package/tls/alarmWebhookIntegration.js.map +1 -0
  215. package/tls/alarmWebhookIntegrations.d.ts +100 -0
  216. package/tls/alarmWebhookIntegrations.js +48 -0
  217. package/tls/alarmWebhookIntegrations.js.map +1 -0
  218. package/tls/alarms.d.ts +7 -11
  219. package/tls/alarms.js +3 -6
  220. package/tls/alarms.js.map +1 -1
  221. package/tls/consumerGroup.d.ts +3 -3
  222. package/tls/consumerGroup.js +3 -3
  223. package/tls/consumerGroups.d.ts +38 -2
  224. package/tls/consumerGroups.js +38 -2
  225. package/tls/consumerGroups.js.map +1 -1
  226. package/tls/describeTraces.d.ts +91 -0
  227. package/tls/describeTraces.js +52 -0
  228. package/tls/describeTraces.js.map +1 -0
  229. package/tls/downloadTask.d.ts +239 -0
  230. package/tls/downloadTask.js +125 -0
  231. package/tls/downloadTask.js.map +1 -0
  232. package/tls/downloadTasks.d.ts +105 -0
  233. package/tls/downloadTasks.js +56 -0
  234. package/tls/downloadTasks.js.map +1 -0
  235. package/tls/downloadUrls.d.ts +95 -0
  236. package/tls/downloadUrls.js +80 -0
  237. package/tls/downloadUrls.js.map +1 -0
  238. package/tls/etlTask.d.ts +4 -4
  239. package/tls/etlTask.js +4 -4
  240. package/tls/getAccounts.d.ts +62 -0
  241. package/tls/getAccounts.js +42 -0
  242. package/tls/getAccounts.js.map +1 -0
  243. package/tls/getAlarmContentTemplates.d.ts +113 -0
  244. package/tls/getAlarmContentTemplates.js +47 -0
  245. package/tls/getAlarmContentTemplates.js.map +1 -0
  246. package/tls/getAlarmWebhookIntegrations.d.ts +98 -0
  247. package/tls/getAlarmWebhookIntegrations.js +45 -0
  248. package/tls/getAlarmWebhookIntegrations.js.map +1 -0
  249. package/tls/getAlarms.d.ts +7 -11
  250. package/tls/getAlarms.js +3 -6
  251. package/tls/getAlarms.js.map +1 -1
  252. package/tls/getConsumerGroups.d.ts +38 -2
  253. package/tls/getConsumerGroups.js +38 -2
  254. package/tls/getConsumerGroups.js.map +1 -1
  255. package/tls/getDescribeTraces.d.ts +89 -0
  256. package/tls/getDescribeTraces.js +49 -0
  257. package/tls/getDescribeTraces.js.map +1 -0
  258. package/tls/getDownloadTasks.d.ts +103 -0
  259. package/tls/getDownloadTasks.js +53 -0
  260. package/tls/getDownloadTasks.js.map +1 -0
  261. package/tls/getDownloadUrls.d.ts +93 -0
  262. package/tls/getDownloadUrls.js +77 -0
  263. package/tls/getDownloadUrls.js.map +1 -0
  264. package/tls/getHostGroupRules.d.ts +75 -0
  265. package/tls/getHostGroupRules.js +46 -0
  266. package/tls/getHostGroupRules.js.map +1 -0
  267. package/tls/getHostGroups.d.ts +11 -8
  268. package/tls/getHostGroups.js +3 -8
  269. package/tls/getHostGroups.js.map +1 -1
  270. package/tls/getHosts.d.ts +2 -2
  271. package/tls/getHosts.js +2 -2
  272. package/tls/getIndexes.d.ts +2 -2
  273. package/tls/getIndexes.js +2 -2
  274. package/tls/getLogContexts.d.ts +105 -0
  275. package/tls/getLogContexts.js +32 -0
  276. package/tls/getLogContexts.js.map +1 -0
  277. package/tls/getLogHistograms.d.ts +120 -0
  278. package/tls/getLogHistograms.js +57 -0
  279. package/tls/getLogHistograms.js.map +1 -0
  280. package/tls/getLogSearches.d.ts +164 -0
  281. package/tls/getLogSearches.js +62 -0
  282. package/tls/getLogSearches.js.map +1 -0
  283. package/tls/getRuleAppliers.d.ts +251 -17
  284. package/tls/getRuleAppliers.js +239 -5
  285. package/tls/getRuleAppliers.js.map +1 -1
  286. package/tls/getRuleBoundHostGroups.d.ts +75 -0
  287. package/tls/getRuleBoundHostGroups.js +46 -0
  288. package/tls/getRuleBoundHostGroups.js.map +1 -0
  289. package/tls/getRules.d.ts +54 -7
  290. package/tls/getRules.js +15 -2
  291. package/tls/getRules.js.map +1 -1
  292. package/tls/getSearchTraces.d.ts +85 -0
  293. package/tls/getSearchTraces.js +47 -0
  294. package/tls/getSearchTraces.js.map +1 -0
  295. package/tls/getShards.d.ts +2 -2
  296. package/tls/getShards.js +2 -2
  297. package/tls/getTagResources.d.ts +167 -0
  298. package/tls/getTagResources.js +106 -0
  299. package/tls/getTagResources.js.map +1 -0
  300. package/tls/getTags.d.ts +115 -0
  301. package/tls/getTags.js +54 -0
  302. package/tls/getTags.js.map +1 -0
  303. package/tls/getTopics.d.ts +4 -13
  304. package/tls/getTopics.js +4 -5
  305. package/tls/getTopics.js.map +1 -1
  306. package/tls/getTraceInstances.d.ts +154 -0
  307. package/tls/getTraceInstances.js +63 -0
  308. package/tls/getTraceInstances.js.map +1 -0
  309. package/tls/host.d.ts +23 -10
  310. package/tls/host.js +21 -11
  311. package/tls/host.js.map +1 -1
  312. package/tls/hostGroup.d.ts +20 -27
  313. package/tls/hostGroup.js +20 -9
  314. package/tls/hostGroup.js.map +1 -1
  315. package/tls/hostGroupRules.d.ts +77 -0
  316. package/tls/hostGroupRules.js +49 -0
  317. package/tls/hostGroupRules.js.map +1 -0
  318. package/tls/hostGroups.d.ts +11 -8
  319. package/tls/hostGroups.js +3 -8
  320. package/tls/hostGroups.js.map +1 -1
  321. package/tls/hosts.d.ts +2 -2
  322. package/tls/hosts.js +2 -2
  323. package/tls/index.d.ts +117 -0
  324. package/tls/index.js +138 -2
  325. package/tls/index.js.map +1 -1
  326. package/tls/index_.d.ts +55 -32
  327. package/tls/index_.js +35 -32
  328. package/tls/index_.js.map +1 -1
  329. package/tls/indexes.d.ts +2 -2
  330. package/tls/indexes.js +2 -2
  331. package/tls/logContexts.d.ts +107 -0
  332. package/tls/logContexts.js +35 -0
  333. package/tls/logContexts.js.map +1 -0
  334. package/tls/logHistograms.d.ts +122 -0
  335. package/tls/logHistograms.js +60 -0
  336. package/tls/logHistograms.js.map +1 -0
  337. package/tls/logSearches.d.ts +166 -0
  338. package/tls/logSearches.js +65 -0
  339. package/tls/logSearches.js.map +1 -0
  340. package/tls/project.d.ts +24 -29
  341. package/tls/project.js +17 -11
  342. package/tls/project.js.map +1 -1
  343. package/tls/rule.d.ts +79 -36
  344. package/tls/rule.js +79 -36
  345. package/tls/rule.js.map +1 -1
  346. package/tls/ruleAppliers.d.ts +251 -17
  347. package/tls/ruleAppliers.js +239 -5
  348. package/tls/ruleAppliers.js.map +1 -1
  349. package/tls/ruleBoundHostGroup.d.ts +82 -0
  350. package/tls/ruleBoundHostGroup.js +79 -0
  351. package/tls/ruleBoundHostGroup.js.map +1 -0
  352. package/tls/ruleBoundHostGroups.d.ts +77 -0
  353. package/tls/ruleBoundHostGroups.js +49 -0
  354. package/tls/ruleBoundHostGroups.js.map +1 -0
  355. package/tls/rules.d.ts +54 -7
  356. package/tls/rules.js +15 -2
  357. package/tls/rules.js.map +1 -1
  358. package/tls/searchTraces.d.ts +87 -0
  359. package/tls/searchTraces.js +50 -0
  360. package/tls/searchTraces.js.map +1 -0
  361. package/tls/shard.d.ts +101 -0
  362. package/tls/shard.js +83 -0
  363. package/tls/shard.js.map +1 -0
  364. package/tls/shards.d.ts +2 -2
  365. package/tls/shards.js +2 -2
  366. package/tls/shipper.d.ts +17 -6
  367. package/tls/shipper.js +7 -6
  368. package/tls/shipper.js.map +1 -1
  369. package/tls/tag.d.ts +112 -0
  370. package/tls/tag.js +100 -0
  371. package/tls/tag.js.map +1 -0
  372. package/tls/tagResource.d.ts +111 -0
  373. package/tls/tagResource.js +99 -0
  374. package/tls/tagResource.js.map +1 -0
  375. package/tls/tagResources.d.ts +169 -0
  376. package/tls/tagResources.js +109 -0
  377. package/tls/tagResources.js.map +1 -0
  378. package/tls/tags.d.ts +117 -0
  379. package/tls/tags.js +57 -0
  380. package/tls/tags.js.map +1 -0
  381. package/tls/topic.d.ts +84 -3
  382. package/tls/topic.js +24 -3
  383. package/tls/topic.js.map +1 -1
  384. package/tls/topics.d.ts +4 -13
  385. package/tls/topics.js +4 -5
  386. package/tls/topics.js.map +1 -1
  387. package/tls/traceInstance.d.ts +122 -0
  388. package/tls/traceInstance.js +97 -0
  389. package/tls/traceInstance.js.map +1 -0
  390. package/tls/traceInstances.d.ts +156 -0
  391. package/tls/traceInstances.js +66 -0
  392. package/tls/traceInstances.js.map +1 -0
  393. package/types/input.d.ts +4211 -2621
  394. package/types/output.d.ts +6032 -884
@@ -0,0 +1,93 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Use this data source to query detailed information of tls download urls
4
+ * ## Example Usage
5
+ *
6
+ * ```typescript
7
+ * import * as pulumi from "@pulumi/pulumi";
8
+ * import * as volcengine from "@pulumi/volcengine";
9
+ * import * as volcengine from "@volcengine/pulumi";
10
+ *
11
+ * const foo = new volcengine.tls.DownloadTask("foo", {
12
+ * topicId: "36be6c75-0733-4bee-b63d-48e0eae37f87",
13
+ * taskName: "tf-test-download-task",
14
+ * query: "*",
15
+ * startTime: 1740426022,
16
+ * endTime: 1740626022,
17
+ * compression: "gzip",
18
+ * dataFormat: "json",
19
+ * limit: 10000000,
20
+ * sort: "desc",
21
+ * allowIncomplete: false,
22
+ * taskType: 1,
23
+ * logContextInfos: {},
24
+ * });
25
+ * export const tlsDownloadTaskId = foo.taskId;
26
+ * const default = volcengine.tls.getDownloadUrls({
27
+ * taskId: resource.volcengine_tls_download_task.foo.task_id,
28
+ * });
29
+ * ```
30
+ */
31
+ export declare function getDownloadUrls(args: GetDownloadUrlsArgs, opts?: pulumi.InvokeOptions): Promise<GetDownloadUrlsResult>;
32
+ /**
33
+ * A collection of arguments for invoking getDownloadUrls.
34
+ */
35
+ export interface GetDownloadUrlsArgs {
36
+ /**
37
+ * The ID of the download task.
38
+ */
39
+ taskId: string;
40
+ }
41
+ /**
42
+ * A collection of values returned by getDownloadUrls.
43
+ */
44
+ export interface GetDownloadUrlsResult {
45
+ /**
46
+ * The download URL of the download task.
47
+ */
48
+ readonly downloadUrl: string;
49
+ /**
50
+ * The provider-assigned unique ID for this managed resource.
51
+ */
52
+ readonly id: string;
53
+ readonly taskId: string;
54
+ }
55
+ /**
56
+ * Use this data source to query detailed information of tls download urls
57
+ * ## Example Usage
58
+ *
59
+ * ```typescript
60
+ * import * as pulumi from "@pulumi/pulumi";
61
+ * import * as volcengine from "@pulumi/volcengine";
62
+ * import * as volcengine from "@volcengine/pulumi";
63
+ *
64
+ * const foo = new volcengine.tls.DownloadTask("foo", {
65
+ * topicId: "36be6c75-0733-4bee-b63d-48e0eae37f87",
66
+ * taskName: "tf-test-download-task",
67
+ * query: "*",
68
+ * startTime: 1740426022,
69
+ * endTime: 1740626022,
70
+ * compression: "gzip",
71
+ * dataFormat: "json",
72
+ * limit: 10000000,
73
+ * sort: "desc",
74
+ * allowIncomplete: false,
75
+ * taskType: 1,
76
+ * logContextInfos: {},
77
+ * });
78
+ * export const tlsDownloadTaskId = foo.taskId;
79
+ * const default = volcengine.tls.getDownloadUrls({
80
+ * taskId: resource.volcengine_tls_download_task.foo.task_id,
81
+ * });
82
+ * ```
83
+ */
84
+ export declare function getDownloadUrlsOutput(args: GetDownloadUrlsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetDownloadUrlsResult>;
85
+ /**
86
+ * A collection of arguments for invoking getDownloadUrls.
87
+ */
88
+ export interface GetDownloadUrlsOutputArgs {
89
+ /**
90
+ * The ID of the download task.
91
+ */
92
+ taskId: pulumi.Input<string>;
93
+ }
@@ -0,0 +1,77 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.getDownloadUrlsOutput = exports.getDownloadUrls = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Use this data source to query detailed information of tls download urls
10
+ * ## Example Usage
11
+ *
12
+ * ```typescript
13
+ * import * as pulumi from "@pulumi/pulumi";
14
+ * import * as volcengine from "@pulumi/volcengine";
15
+ * import * as volcengine from "@volcengine/pulumi";
16
+ *
17
+ * const foo = new volcengine.tls.DownloadTask("foo", {
18
+ * topicId: "36be6c75-0733-4bee-b63d-48e0eae37f87",
19
+ * taskName: "tf-test-download-task",
20
+ * query: "*",
21
+ * startTime: 1740426022,
22
+ * endTime: 1740626022,
23
+ * compression: "gzip",
24
+ * dataFormat: "json",
25
+ * limit: 10000000,
26
+ * sort: "desc",
27
+ * allowIncomplete: false,
28
+ * taskType: 1,
29
+ * logContextInfos: {},
30
+ * });
31
+ * export const tlsDownloadTaskId = foo.taskId;
32
+ * const default = volcengine.tls.getDownloadUrls({
33
+ * taskId: resource.volcengine_tls_download_task.foo.task_id,
34
+ * });
35
+ * ```
36
+ */
37
+ function getDownloadUrls(args, opts) {
38
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
39
+ return pulumi.runtime.invoke("volcengine:tls/getDownloadUrls:getDownloadUrls", {
40
+ "taskId": args.taskId,
41
+ }, opts);
42
+ }
43
+ exports.getDownloadUrls = getDownloadUrls;
44
+ /**
45
+ * Use this data source to query detailed information of tls download urls
46
+ * ## Example Usage
47
+ *
48
+ * ```typescript
49
+ * import * as pulumi from "@pulumi/pulumi";
50
+ * import * as volcengine from "@pulumi/volcengine";
51
+ * import * as volcengine from "@volcengine/pulumi";
52
+ *
53
+ * const foo = new volcengine.tls.DownloadTask("foo", {
54
+ * topicId: "36be6c75-0733-4bee-b63d-48e0eae37f87",
55
+ * taskName: "tf-test-download-task",
56
+ * query: "*",
57
+ * startTime: 1740426022,
58
+ * endTime: 1740626022,
59
+ * compression: "gzip",
60
+ * dataFormat: "json",
61
+ * limit: 10000000,
62
+ * sort: "desc",
63
+ * allowIncomplete: false,
64
+ * taskType: 1,
65
+ * logContextInfos: {},
66
+ * });
67
+ * export const tlsDownloadTaskId = foo.taskId;
68
+ * const default = volcengine.tls.getDownloadUrls({
69
+ * taskId: resource.volcengine_tls_download_task.foo.task_id,
70
+ * });
71
+ * ```
72
+ */
73
+ function getDownloadUrlsOutput(args, opts) {
74
+ return pulumi.output(args).apply((a) => getDownloadUrls(a, opts));
75
+ }
76
+ exports.getDownloadUrlsOutput = getDownloadUrlsOutput;
77
+ //# sourceMappingURL=getDownloadUrls.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getDownloadUrls.js","sourceRoot":"","sources":["../../tls/getDownloadUrls.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAElF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gDAAgD,EAAE;QAC3E,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,0CAMC;AA0BD;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC1E,CAAC;AAFD,sDAEC"}
@@ -0,0 +1,75 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as outputs from "../types/output";
3
+ /**
4
+ * Use this data source to query detailed information of tls host group rules
5
+ * ## Example Usage
6
+ *
7
+ * ```typescript
8
+ * import * as pulumi from "@pulumi/pulumi";
9
+ * import * as volcengine from "@pulumi/volcengine";
10
+ *
11
+ * const default = volcengine.tls.getHostGroupRules({
12
+ * hostGroupId: "59989043-5422-4440-a981-63d241563fc0",
13
+ * });
14
+ * ```
15
+ */
16
+ export declare function getHostGroupRules(args: GetHostGroupRulesArgs, opts?: pulumi.InvokeOptions): Promise<GetHostGroupRulesResult>;
17
+ /**
18
+ * A collection of arguments for invoking getHostGroupRules.
19
+ */
20
+ export interface GetHostGroupRulesArgs {
21
+ /**
22
+ * The id of host group.
23
+ */
24
+ hostGroupId: string;
25
+ /**
26
+ * File name where to save data source results.
27
+ */
28
+ outputFile?: string;
29
+ }
30
+ /**
31
+ * A collection of values returned by getHostGroupRules.
32
+ */
33
+ export interface GetHostGroupRulesResult {
34
+ readonly hostGroupId: string;
35
+ /**
36
+ * The provider-assigned unique ID for this managed resource.
37
+ */
38
+ readonly id: string;
39
+ readonly outputFile?: string;
40
+ /**
41
+ * The collection of rule info.
42
+ */
43
+ readonly ruleInfos: outputs.tls.GetHostGroupRulesRuleInfo[];
44
+ /**
45
+ * The total count of query.
46
+ */
47
+ readonly totalCount: number;
48
+ }
49
+ /**
50
+ * Use this data source to query detailed information of tls host group rules
51
+ * ## Example Usage
52
+ *
53
+ * ```typescript
54
+ * import * as pulumi from "@pulumi/pulumi";
55
+ * import * as volcengine from "@pulumi/volcengine";
56
+ *
57
+ * const default = volcengine.tls.getHostGroupRules({
58
+ * hostGroupId: "59989043-5422-4440-a981-63d241563fc0",
59
+ * });
60
+ * ```
61
+ */
62
+ export declare function getHostGroupRulesOutput(args: GetHostGroupRulesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetHostGroupRulesResult>;
63
+ /**
64
+ * A collection of arguments for invoking getHostGroupRules.
65
+ */
66
+ export interface GetHostGroupRulesOutputArgs {
67
+ /**
68
+ * The id of host group.
69
+ */
70
+ hostGroupId: pulumi.Input<string>;
71
+ /**
72
+ * File name where to save data source results.
73
+ */
74
+ outputFile?: pulumi.Input<string>;
75
+ }
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.getHostGroupRulesOutput = exports.getHostGroupRules = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Use this data source to query detailed information of tls host group rules
10
+ * ## Example Usage
11
+ *
12
+ * ```typescript
13
+ * import * as pulumi from "@pulumi/pulumi";
14
+ * import * as volcengine from "@pulumi/volcengine";
15
+ *
16
+ * const default = volcengine.tls.getHostGroupRules({
17
+ * hostGroupId: "59989043-5422-4440-a981-63d241563fc0",
18
+ * });
19
+ * ```
20
+ */
21
+ function getHostGroupRules(args, opts) {
22
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
23
+ return pulumi.runtime.invoke("volcengine:tls/getHostGroupRules:getHostGroupRules", {
24
+ "hostGroupId": args.hostGroupId,
25
+ "outputFile": args.outputFile,
26
+ }, opts);
27
+ }
28
+ exports.getHostGroupRules = getHostGroupRules;
29
+ /**
30
+ * Use this data source to query detailed information of tls host group rules
31
+ * ## Example Usage
32
+ *
33
+ * ```typescript
34
+ * import * as pulumi from "@pulumi/pulumi";
35
+ * import * as volcengine from "@pulumi/volcengine";
36
+ *
37
+ * const default = volcengine.tls.getHostGroupRules({
38
+ * hostGroupId: "59989043-5422-4440-a981-63d241563fc0",
39
+ * });
40
+ * ```
41
+ */
42
+ function getHostGroupRulesOutput(args, opts) {
43
+ return pulumi.output(args).apply((a) => getHostGroupRules(a, opts));
44
+ }
45
+ exports.getHostGroupRulesOutput = getHostGroupRulesOutput;
46
+ //# sourceMappingURL=getHostGroupRules.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getHostGroupRules.js","sourceRoot":"","sources":["../../tls/getHostGroupRules.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;GAYG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IAEtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8CAOC;AAmCD;;;;;;;;;;;;GAYG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAClG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,iBAAiB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC5E,CAAC;AAFD,0DAEC"}
@@ -8,10 +8,7 @@ import * as outputs from "../types/output";
8
8
  * import * as pulumi from "@pulumi/pulumi";
9
9
  * import * as volcengine from "@pulumi/volcengine";
10
10
  *
11
- * const default = volcengine.tls.getHostGroups({
12
- * hostGroupId: "fbea6619-7b0c-40f3-ac7e-45c63e3f676e",
13
- * hostGroupName: "cn",
14
- * });
11
+ * const default = volcengine.tls.getHostGroups({});
15
12
  * ```
16
13
  */
17
14
  export declare function getHostGroups(args?: GetHostGroupsArgs, opts?: pulumi.InvokeOptions): Promise<GetHostGroupsResult>;
@@ -23,6 +20,10 @@ export interface GetHostGroupsArgs {
23
20
  * Whether enable auto update.
24
21
  */
25
22
  autoUpdate?: boolean;
23
+ /**
24
+ * Whether to hide host groups in exclusive resources.
25
+ */
26
+ hidden?: boolean;
26
27
  /**
27
28
  * The id of host group.
28
29
  */
@@ -56,6 +57,7 @@ export interface GetHostGroupsResult {
56
57
  * Whether enable auto update.
57
58
  */
58
59
  readonly autoUpdate?: boolean;
60
+ readonly hidden?: boolean;
59
61
  /**
60
62
  * The id of host group.
61
63
  */
@@ -98,10 +100,7 @@ export interface GetHostGroupsResult {
98
100
  * import * as pulumi from "@pulumi/pulumi";
99
101
  * import * as volcengine from "@pulumi/volcengine";
100
102
  *
101
- * const default = volcengine.tls.getHostGroups({
102
- * hostGroupId: "fbea6619-7b0c-40f3-ac7e-45c63e3f676e",
103
- * hostGroupName: "cn",
104
- * });
103
+ * const default = volcengine.tls.getHostGroups({});
105
104
  * ```
106
105
  */
107
106
  export declare function getHostGroupsOutput(args?: GetHostGroupsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetHostGroupsResult>;
@@ -113,6 +112,10 @@ export interface GetHostGroupsOutputArgs {
113
112
  * Whether enable auto update.
114
113
  */
115
114
  autoUpdate?: pulumi.Input<boolean>;
115
+ /**
116
+ * Whether to hide host groups in exclusive resources.
117
+ */
118
+ hidden?: pulumi.Input<boolean>;
116
119
  /**
117
120
  * The id of host group.
118
121
  */
@@ -13,10 +13,7 @@ const utilities = require("../utilities");
13
13
  * import * as pulumi from "@pulumi/pulumi";
14
14
  * import * as volcengine from "@pulumi/volcengine";
15
15
  *
16
- * const default = volcengine.tls.getHostGroups({
17
- * hostGroupId: "fbea6619-7b0c-40f3-ac7e-45c63e3f676e",
18
- * hostGroupName: "cn",
19
- * });
16
+ * const default = volcengine.tls.getHostGroups({});
20
17
  * ```
21
18
  */
22
19
  function getHostGroups(args, opts) {
@@ -24,6 +21,7 @@ function getHostGroups(args, opts) {
24
21
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
25
22
  return pulumi.runtime.invoke("volcengine:tls/getHostGroups:getHostGroups", {
26
23
  "autoUpdate": args.autoUpdate,
24
+ "hidden": args.hidden,
27
25
  "hostGroupId": args.hostGroupId,
28
26
  "hostGroupName": args.hostGroupName,
29
27
  "hostIdentifier": args.hostIdentifier,
@@ -41,10 +39,7 @@ exports.getHostGroups = getHostGroups;
41
39
  * import * as pulumi from "@pulumi/pulumi";
42
40
  * import * as volcengine from "@pulumi/volcengine";
43
41
  *
44
- * const default = volcengine.tls.getHostGroups({
45
- * hostGroupId: "fbea6619-7b0c-40f3-ac7e-45c63e3f676e",
46
- * hostGroupName: "cn",
47
- * });
42
+ * const default = volcengine.tls.getHostGroups({});
48
43
  * ```
49
44
  */
50
45
  function getHostGroupsOutput(args, opts) {
@@ -1 +1 @@
1
- {"version":3,"file":"getHostGroups.js","sourceRoot":"","sources":["../../tls/getHostGroups.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;GAaG;AACH,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAA2B;IAC/E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAbD,sCAaC;AA8ED;;;;;;;;;;;;;GAaG;AACH,SAAgB,mBAAmB,CAAC,IAA8B,EAAE,IAA2B;IAC3F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,aAAa,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACxE,CAAC;AAFD,kDAEC"}
1
+ {"version":3,"file":"getHostGroups.js","sourceRoot":"","sources":["../../tls/getHostGroups.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;GAUG;AACH,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAA2B;IAC/E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAdD,sCAcC;AAmFD;;;;;;;;;;GAUG;AACH,SAAgB,mBAAmB,CAAC,IAA8B,EAAE,IAA2B;IAC3F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,aAAa,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACxE,CAAC;AAFD,kDAEC"}
package/tls/getHosts.d.ts CHANGED
@@ -9,7 +9,7 @@ import * as outputs from "../types/output";
9
9
  * import * as volcengine from "@pulumi/volcengine";
10
10
  *
11
11
  * const default = volcengine.tls.getHosts({
12
- * hostGroupId: "527102e2-1e4f-45f4-a990-751152125da7",
12
+ * hostGroupId: "2123af96-d057-4234-8f34-6fae9c9da6d0",
13
13
  * });
14
14
  * ```
15
15
  */
@@ -74,7 +74,7 @@ export interface GetHostsResult {
74
74
  * import * as volcengine from "@pulumi/volcengine";
75
75
  *
76
76
  * const default = volcengine.tls.getHosts({
77
- * hostGroupId: "527102e2-1e4f-45f4-a990-751152125da7",
77
+ * hostGroupId: "2123af96-d057-4234-8f34-6fae9c9da6d0",
78
78
  * });
79
79
  * ```
80
80
  */
package/tls/getHosts.js CHANGED
@@ -14,7 +14,7 @@ const utilities = require("../utilities");
14
14
  * import * as volcengine from "@pulumi/volcengine";
15
15
  *
16
16
  * const default = volcengine.tls.getHosts({
17
- * hostGroupId: "527102e2-1e4f-45f4-a990-751152125da7",
17
+ * hostGroupId: "2123af96-d057-4234-8f34-6fae9c9da6d0",
18
18
  * });
19
19
  * ```
20
20
  */
@@ -37,7 +37,7 @@ exports.getHosts = getHosts;
37
37
  * import * as volcengine from "@pulumi/volcengine";
38
38
  *
39
39
  * const default = volcengine.tls.getHosts({
40
- * hostGroupId: "527102e2-1e4f-45f4-a990-751152125da7",
40
+ * hostGroupId: "2123af96-d057-4234-8f34-6fae9c9da6d0",
41
41
  * });
42
42
  * ```
43
43
  */
@@ -9,7 +9,7 @@ import * as outputs from "../types/output";
9
9
  * import * as volcengine from "@pulumi/volcengine";
10
10
  *
11
11
  * const default = volcengine.tls.getIndexes({
12
- * ids: ["7ce12237-6670-44a7-9d79-2e36961586e6"],
12
+ * ids: ["9b756385-1dfb-4306-a094-0c88e04b34a5"],
13
13
  * });
14
14
  * ```
15
15
  */
@@ -55,7 +55,7 @@ export interface GetIndexesResult {
55
55
  * import * as volcengine from "@pulumi/volcengine";
56
56
  *
57
57
  * const default = volcengine.tls.getIndexes({
58
- * ids: ["7ce12237-6670-44a7-9d79-2e36961586e6"],
58
+ * ids: ["9b756385-1dfb-4306-a094-0c88e04b34a5"],
59
59
  * });
60
60
  * ```
61
61
  */
package/tls/getIndexes.js CHANGED
@@ -14,7 +14,7 @@ const utilities = require("../utilities");
14
14
  * import * as volcengine from "@pulumi/volcengine";
15
15
  *
16
16
  * const default = volcengine.tls.getIndexes({
17
- * ids: ["7ce12237-6670-44a7-9d79-2e36961586e6"],
17
+ * ids: ["9b756385-1dfb-4306-a094-0c88e04b34a5"],
18
18
  * });
19
19
  * ```
20
20
  */
@@ -35,7 +35,7 @@ exports.getIndexes = getIndexes;
35
35
  * import * as volcengine from "@pulumi/volcengine";
36
36
  *
37
37
  * const default = volcengine.tls.getIndexes({
38
- * ids: ["7ce12237-6670-44a7-9d79-2e36961586e6"],
38
+ * ids: ["9b756385-1dfb-4306-a094-0c88e04b34a5"],
39
39
  * });
40
40
  * ```
41
41
  */
@@ -0,0 +1,105 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as outputs from "../types/output";
3
+ /**
4
+ * Use this data source to query detailed information of tls log contexts
5
+ */
6
+ export declare function getLogContexts(args: GetLogContextsArgs, opts?: pulumi.InvokeOptions): Promise<GetLogContextsResult>;
7
+ /**
8
+ * A collection of arguments for invoking getLogContexts.
9
+ */
10
+ export interface GetLogContextsArgs {
11
+ /**
12
+ * The context flow of the log.
13
+ */
14
+ contextFlow: string;
15
+ /**
16
+ * Whether to describe log context.
17
+ */
18
+ describeLogContext?: boolean;
19
+ /**
20
+ * The number of next logs.
21
+ */
22
+ nextLogs?: number;
23
+ /**
24
+ * File name where to save data source results.
25
+ */
26
+ outputFile?: string;
27
+ /**
28
+ * The package offset of the log.
29
+ */
30
+ packageOffset: number;
31
+ /**
32
+ * The number of previous logs.
33
+ */
34
+ prevLogs?: number;
35
+ /**
36
+ * The source of the log.
37
+ */
38
+ source: string;
39
+ /**
40
+ * The ID of the topic.
41
+ */
42
+ topicId: string;
43
+ }
44
+ /**
45
+ * A collection of values returned by getLogContexts.
46
+ */
47
+ export interface GetLogContextsResult {
48
+ readonly contextFlow: string;
49
+ readonly describeLogContext?: boolean;
50
+ /**
51
+ * The provider-assigned unique ID for this managed resource.
52
+ */
53
+ readonly id: string;
54
+ /**
55
+ * The list of log contexts.
56
+ */
57
+ readonly logContexts: outputs.tls.GetLogContextsLogContext[];
58
+ readonly nextLogs?: number;
59
+ readonly outputFile?: string;
60
+ readonly packageOffset: number;
61
+ readonly prevLogs?: number;
62
+ readonly source: string;
63
+ readonly topicId: string;
64
+ }
65
+ /**
66
+ * Use this data source to query detailed information of tls log contexts
67
+ */
68
+ export declare function getLogContextsOutput(args: GetLogContextsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetLogContextsResult>;
69
+ /**
70
+ * A collection of arguments for invoking getLogContexts.
71
+ */
72
+ export interface GetLogContextsOutputArgs {
73
+ /**
74
+ * The context flow of the log.
75
+ */
76
+ contextFlow: pulumi.Input<string>;
77
+ /**
78
+ * Whether to describe log context.
79
+ */
80
+ describeLogContext?: pulumi.Input<boolean>;
81
+ /**
82
+ * The number of next logs.
83
+ */
84
+ nextLogs?: pulumi.Input<number>;
85
+ /**
86
+ * File name where to save data source results.
87
+ */
88
+ outputFile?: pulumi.Input<string>;
89
+ /**
90
+ * The package offset of the log.
91
+ */
92
+ packageOffset: pulumi.Input<number>;
93
+ /**
94
+ * The number of previous logs.
95
+ */
96
+ prevLogs?: pulumi.Input<number>;
97
+ /**
98
+ * The source of the log.
99
+ */
100
+ source: pulumi.Input<string>;
101
+ /**
102
+ * The ID of the topic.
103
+ */
104
+ topicId: pulumi.Input<string>;
105
+ }
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.getLogContextsOutput = exports.getLogContexts = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Use this data source to query detailed information of tls log contexts
10
+ */
11
+ function getLogContexts(args, opts) {
12
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
13
+ return pulumi.runtime.invoke("volcengine:tls/getLogContexts:getLogContexts", {
14
+ "contextFlow": args.contextFlow,
15
+ "describeLogContext": args.describeLogContext,
16
+ "nextLogs": args.nextLogs,
17
+ "outputFile": args.outputFile,
18
+ "packageOffset": args.packageOffset,
19
+ "prevLogs": args.prevLogs,
20
+ "source": args.source,
21
+ "topicId": args.topicId,
22
+ }, opts);
23
+ }
24
+ exports.getLogContexts = getLogContexts;
25
+ /**
26
+ * Use this data source to query detailed information of tls log contexts
27
+ */
28
+ function getLogContextsOutput(args, opts) {
29
+ return pulumi.output(args).apply((a) => getLogContexts(a, opts));
30
+ }
31
+ exports.getLogContextsOutput = getLogContextsOutput;
32
+ //# sourceMappingURL=getLogContexts.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getLogContexts.js","sourceRoot":"","sources":["../../tls/getLogContexts.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAEhF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAbD,wCAaC;AA6DD;;GAEG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}