@azure-typespec/http-client-csharp-provisioning 1.0.0-alpha.20260313.4

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 (277) hide show
  1. package/README.md +40 -0
  2. package/dist/emitter/emitter.d.ts +4 -0
  3. package/dist/emitter/emitter.d.ts.map +1 -0
  4. package/dist/emitter/emitter.js +11 -0
  5. package/dist/emitter/emitter.js.map +1 -0
  6. package/dist/emitter/index.d.ts +3 -0
  7. package/dist/emitter/index.d.ts.map +1 -0
  8. package/dist/emitter/index.js +5 -0
  9. package/dist/emitter/index.js.map +1 -0
  10. package/dist/emitter/lib/lib.d.ts +4 -0
  11. package/dist/emitter/lib/lib.d.ts.map +1 -0
  12. package/dist/emitter/lib/lib.js +15 -0
  13. package/dist/emitter/lib/lib.js.map +1 -0
  14. package/dist/emitter/options.d.ts +6 -0
  15. package/dist/emitter/options.d.ts.map +1 -0
  16. package/dist/emitter/options.js +11 -0
  17. package/dist/emitter/options.js.map +1 -0
  18. package/dist/generator/Azure.Core.Expressions.DataFactory.dll +0 -0
  19. package/dist/generator/Azure.Core.dll +0 -0
  20. package/dist/generator/Azure.Generator.Management.dll +0 -0
  21. package/dist/generator/Azure.Generator.Provisioning.deps.json +1062 -0
  22. package/dist/generator/Azure.Generator.Provisioning.dll +0 -0
  23. package/dist/generator/Azure.Generator.Provisioning.pdb +0 -0
  24. package/dist/generator/Azure.Generator.Provisioning.xml +1051 -0
  25. package/dist/generator/Azure.Generator.dll +0 -0
  26. package/dist/generator/Azure.Provisioning.dll +0 -0
  27. package/dist/generator/Azure.ResourceManager.dll +0 -0
  28. package/dist/generator/CommandLine.dll +0 -0
  29. package/dist/generator/Humanizer.dll +0 -0
  30. package/dist/generator/Microsoft.Bcl.AsyncInterfaces.dll +0 -0
  31. package/dist/generator/Microsoft.Build.Framework.dll +0 -0
  32. package/dist/generator/Microsoft.Build.dll +0 -0
  33. package/dist/generator/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +0 -0
  34. package/dist/generator/Microsoft.CodeAnalysis.CSharp.dll +0 -0
  35. package/dist/generator/Microsoft.CodeAnalysis.Workspaces.dll +0 -0
  36. package/dist/generator/Microsoft.CodeAnalysis.dll +0 -0
  37. package/dist/generator/Microsoft.Extensions.Configuration.Abstractions.dll +0 -0
  38. package/dist/generator/Microsoft.Extensions.DependencyInjection.Abstractions.dll +0 -0
  39. package/dist/generator/Microsoft.Extensions.Diagnostics.Abstractions.dll +0 -0
  40. package/dist/generator/Microsoft.Extensions.FileProviders.Abstractions.dll +0 -0
  41. package/dist/generator/Microsoft.Extensions.Hosting.Abstractions.dll +0 -0
  42. package/dist/generator/Microsoft.Extensions.Logging.Abstractions.dll +0 -0
  43. package/dist/generator/Microsoft.Extensions.Options.dll +0 -0
  44. package/dist/generator/Microsoft.Extensions.Primitives.dll +0 -0
  45. package/dist/generator/Microsoft.NET.StringTools.dll +0 -0
  46. package/dist/generator/Microsoft.TypeSpec.Generator.ClientModel.dll +0 -0
  47. package/dist/generator/Microsoft.TypeSpec.Generator.Input.dll +0 -0
  48. package/dist/generator/Microsoft.TypeSpec.Generator.dll +0 -0
  49. package/dist/generator/Microsoft.TypeSpec.Generator.runtimeconfig.json +12 -0
  50. package/dist/generator/Newtonsoft.Json.dll +0 -0
  51. package/dist/generator/NuGet.Common.dll +0 -0
  52. package/dist/generator/NuGet.Configuration.dll +0 -0
  53. package/dist/generator/NuGet.Frameworks.dll +0 -0
  54. package/dist/generator/NuGet.Packaging.dll +0 -0
  55. package/dist/generator/NuGet.Protocol.dll +0 -0
  56. package/dist/generator/NuGet.Versioning.dll +0 -0
  57. package/dist/generator/Shared/Core/AppContextSwitchHelper.cs +42 -0
  58. package/dist/generator/Shared/Core/AsyncLockWithValue.cs +260 -0
  59. package/dist/generator/Shared/Core/AzureKeyCredentialPolicy.cs +50 -0
  60. package/dist/generator/Shared/Core/ClientDiagnostics.cs +73 -0
  61. package/dist/generator/Shared/Core/DiagnosticScope.cs +473 -0
  62. package/dist/generator/Shared/Core/DiagnosticScopeFactory.cs +104 -0
  63. package/dist/generator/Shared/Core/FixedDelayWithNoJitterStrategy.cs +26 -0
  64. package/dist/generator/Shared/Core/ForwardsClientCallsAttribute.cs +39 -0
  65. package/dist/generator/Shared/Core/HttpMessageSanitizer.cs +198 -0
  66. package/dist/generator/Shared/Core/IOperationSource.cs +14 -0
  67. package/dist/generator/Shared/Core/NextLinkOperationImplementation.cs +701 -0
  68. package/dist/generator/Shared/Core/NoValueResponseOfT.cs +39 -0
  69. package/dist/generator/Shared/Core/OperationFinalStateVia.cs +16 -0
  70. package/dist/generator/Shared/Core/OperationInternal.cs +263 -0
  71. package/dist/generator/Shared/Core/OperationInternalBase.cs +234 -0
  72. package/dist/generator/Shared/Core/OperationInternalOfT.cs +431 -0
  73. package/dist/generator/Shared/Core/OperationPoller.cs +114 -0
  74. package/dist/generator/Shared/Core/RawRequestUriBuilder.cs +229 -0
  75. package/dist/generator/Shared/Core/RequestHeaderExtensions.cs +132 -0
  76. package/dist/generator/Shared/Core/SequentialDelayStrategy.cs +38 -0
  77. package/dist/generator/Shared/Core/TaskExtensions.cs +313 -0
  78. package/dist/generator/Shared/Core/TypeFormatters.cs +159 -0
  79. package/dist/generator/Shared/Core/VoidValue.cs +10 -0
  80. package/dist/generator/System.ClientModel.dll +0 -0
  81. package/dist/generator/System.ComponentModel.Composition.dll +0 -0
  82. package/dist/generator/System.Composition.AttributedModel.dll +0 -0
  83. package/dist/generator/System.Composition.Convention.dll +0 -0
  84. package/dist/generator/System.Composition.Hosting.dll +0 -0
  85. package/dist/generator/System.Composition.Runtime.dll +0 -0
  86. package/dist/generator/System.Composition.TypedParts.dll +0 -0
  87. package/dist/generator/System.Configuration.ConfigurationManager.dll +0 -0
  88. package/dist/generator/System.Diagnostics.EventLog.dll +0 -0
  89. package/dist/generator/System.Memory.Data.dll +0 -0
  90. package/dist/generator/System.Reflection.MetadataLoadContext.dll +0 -0
  91. package/dist/generator/System.Security.Cryptography.Pkcs.dll +0 -0
  92. package/dist/generator/System.Security.Cryptography.ProtectedData.dll +0 -0
  93. package/dist/generator/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  94. package/dist/generator/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  95. package/dist/generator/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  96. package/dist/generator/cs/Microsoft.CodeAnalysis.resources.dll +0 -0
  97. package/dist/generator/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  98. package/dist/generator/de/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  99. package/dist/generator/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  100. package/dist/generator/de/Microsoft.CodeAnalysis.resources.dll +0 -0
  101. package/dist/generator/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  102. package/dist/generator/es/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  103. package/dist/generator/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  104. package/dist/generator/es/Microsoft.CodeAnalysis.resources.dll +0 -0
  105. package/dist/generator/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  106. package/dist/generator/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  107. package/dist/generator/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  108. package/dist/generator/fr/Microsoft.CodeAnalysis.resources.dll +0 -0
  109. package/dist/generator/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  110. package/dist/generator/it/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  111. package/dist/generator/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  112. package/dist/generator/it/Microsoft.CodeAnalysis.resources.dll +0 -0
  113. package/dist/generator/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  114. package/dist/generator/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  115. package/dist/generator/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  116. package/dist/generator/ja/Microsoft.CodeAnalysis.resources.dll +0 -0
  117. package/dist/generator/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  118. package/dist/generator/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  119. package/dist/generator/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  120. package/dist/generator/ko/Microsoft.CodeAnalysis.resources.dll +0 -0
  121. package/dist/generator/net10.0/Azure.Core.Expressions.DataFactory.dll +0 -0
  122. package/dist/generator/net10.0/Azure.Core.dll +0 -0
  123. package/dist/generator/net10.0/Azure.Generator.Management.dll +0 -0
  124. package/dist/generator/net10.0/Azure.Generator.Provisioning.deps.json +1062 -0
  125. package/dist/generator/net10.0/Azure.Generator.Provisioning.dll +0 -0
  126. package/dist/generator/net10.0/Azure.Generator.Provisioning.pdb +0 -0
  127. package/dist/generator/net10.0/Azure.Generator.Provisioning.xml +1051 -0
  128. package/dist/generator/net10.0/Azure.Generator.dll +0 -0
  129. package/dist/generator/net10.0/Azure.Provisioning.dll +0 -0
  130. package/dist/generator/net10.0/Azure.ResourceManager.dll +0 -0
  131. package/dist/generator/net10.0/CommandLine.dll +0 -0
  132. package/dist/generator/net10.0/Humanizer.dll +0 -0
  133. package/dist/generator/net10.0/Microsoft.Bcl.AsyncInterfaces.dll +0 -0
  134. package/dist/generator/net10.0/Microsoft.Build.Framework.dll +0 -0
  135. package/dist/generator/net10.0/Microsoft.Build.dll +0 -0
  136. package/dist/generator/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +0 -0
  137. package/dist/generator/net10.0/Microsoft.CodeAnalysis.CSharp.dll +0 -0
  138. package/dist/generator/net10.0/Microsoft.CodeAnalysis.Workspaces.dll +0 -0
  139. package/dist/generator/net10.0/Microsoft.CodeAnalysis.dll +0 -0
  140. package/dist/generator/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll +0 -0
  141. package/dist/generator/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +0 -0
  142. package/dist/generator/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll +0 -0
  143. package/dist/generator/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll +0 -0
  144. package/dist/generator/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll +0 -0
  145. package/dist/generator/net10.0/Microsoft.Extensions.Logging.Abstractions.dll +0 -0
  146. package/dist/generator/net10.0/Microsoft.Extensions.Options.dll +0 -0
  147. package/dist/generator/net10.0/Microsoft.Extensions.Primitives.dll +0 -0
  148. package/dist/generator/net10.0/Microsoft.NET.StringTools.dll +0 -0
  149. package/dist/generator/net10.0/Microsoft.TypeSpec.Generator.ClientModel.dll +0 -0
  150. package/dist/generator/net10.0/Microsoft.TypeSpec.Generator.Input.dll +0 -0
  151. package/dist/generator/net10.0/Microsoft.TypeSpec.Generator.dll +0 -0
  152. package/dist/generator/net10.0/Newtonsoft.Json.dll +0 -0
  153. package/dist/generator/net10.0/NuGet.Common.dll +0 -0
  154. package/dist/generator/net10.0/NuGet.Configuration.dll +0 -0
  155. package/dist/generator/net10.0/NuGet.Frameworks.dll +0 -0
  156. package/dist/generator/net10.0/NuGet.Packaging.dll +0 -0
  157. package/dist/generator/net10.0/NuGet.Protocol.dll +0 -0
  158. package/dist/generator/net10.0/NuGet.Versioning.dll +0 -0
  159. package/dist/generator/net10.0/Shared/Core/AppContextSwitchHelper.cs +42 -0
  160. package/dist/generator/net10.0/Shared/Core/AsyncLockWithValue.cs +260 -0
  161. package/dist/generator/net10.0/Shared/Core/AzureKeyCredentialPolicy.cs +50 -0
  162. package/dist/generator/net10.0/Shared/Core/ClientDiagnostics.cs +73 -0
  163. package/dist/generator/net10.0/Shared/Core/DiagnosticScope.cs +473 -0
  164. package/dist/generator/net10.0/Shared/Core/DiagnosticScopeFactory.cs +104 -0
  165. package/dist/generator/net10.0/Shared/Core/FixedDelayWithNoJitterStrategy.cs +26 -0
  166. package/dist/generator/net10.0/Shared/Core/ForwardsClientCallsAttribute.cs +39 -0
  167. package/dist/generator/net10.0/Shared/Core/HttpMessageSanitizer.cs +198 -0
  168. package/dist/generator/net10.0/Shared/Core/IOperationSource.cs +14 -0
  169. package/dist/generator/net10.0/Shared/Core/NextLinkOperationImplementation.cs +701 -0
  170. package/dist/generator/net10.0/Shared/Core/NoValueResponseOfT.cs +39 -0
  171. package/dist/generator/net10.0/Shared/Core/OperationFinalStateVia.cs +16 -0
  172. package/dist/generator/net10.0/Shared/Core/OperationInternal.cs +263 -0
  173. package/dist/generator/net10.0/Shared/Core/OperationInternalBase.cs +234 -0
  174. package/dist/generator/net10.0/Shared/Core/OperationInternalOfT.cs +431 -0
  175. package/dist/generator/net10.0/Shared/Core/OperationPoller.cs +114 -0
  176. package/dist/generator/net10.0/Shared/Core/RawRequestUriBuilder.cs +229 -0
  177. package/dist/generator/net10.0/Shared/Core/RequestHeaderExtensions.cs +132 -0
  178. package/dist/generator/net10.0/Shared/Core/SequentialDelayStrategy.cs +38 -0
  179. package/dist/generator/net10.0/Shared/Core/TaskExtensions.cs +313 -0
  180. package/dist/generator/net10.0/Shared/Core/TypeFormatters.cs +159 -0
  181. package/dist/generator/net10.0/Shared/Core/VoidValue.cs +10 -0
  182. package/dist/generator/net10.0/System.ClientModel.dll +0 -0
  183. package/dist/generator/net10.0/System.ComponentModel.Composition.dll +0 -0
  184. package/dist/generator/net10.0/System.Composition.AttributedModel.dll +0 -0
  185. package/dist/generator/net10.0/System.Composition.Convention.dll +0 -0
  186. package/dist/generator/net10.0/System.Composition.Hosting.dll +0 -0
  187. package/dist/generator/net10.0/System.Composition.Runtime.dll +0 -0
  188. package/dist/generator/net10.0/System.Composition.TypedParts.dll +0 -0
  189. package/dist/generator/net10.0/System.Configuration.ConfigurationManager.dll +0 -0
  190. package/dist/generator/net10.0/System.Diagnostics.EventLog.dll +0 -0
  191. package/dist/generator/net10.0/System.Memory.Data.dll +0 -0
  192. package/dist/generator/net10.0/System.Reflection.MetadataLoadContext.dll +0 -0
  193. package/dist/generator/net10.0/System.Security.Cryptography.Pkcs.dll +0 -0
  194. package/dist/generator/net10.0/System.Security.Cryptography.ProtectedData.dll +0 -0
  195. package/dist/generator/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  196. package/dist/generator/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  197. package/dist/generator/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  198. package/dist/generator/net10.0/cs/Microsoft.CodeAnalysis.resources.dll +0 -0
  199. package/dist/generator/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  200. package/dist/generator/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  201. package/dist/generator/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  202. package/dist/generator/net10.0/de/Microsoft.CodeAnalysis.resources.dll +0 -0
  203. package/dist/generator/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  204. package/dist/generator/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  205. package/dist/generator/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  206. package/dist/generator/net10.0/es/Microsoft.CodeAnalysis.resources.dll +0 -0
  207. package/dist/generator/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  208. package/dist/generator/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  209. package/dist/generator/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  210. package/dist/generator/net10.0/fr/Microsoft.CodeAnalysis.resources.dll +0 -0
  211. package/dist/generator/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  212. package/dist/generator/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  213. package/dist/generator/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  214. package/dist/generator/net10.0/it/Microsoft.CodeAnalysis.resources.dll +0 -0
  215. package/dist/generator/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  216. package/dist/generator/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  217. package/dist/generator/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  218. package/dist/generator/net10.0/ja/Microsoft.CodeAnalysis.resources.dll +0 -0
  219. package/dist/generator/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  220. package/dist/generator/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  221. package/dist/generator/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  222. package/dist/generator/net10.0/ko/Microsoft.CodeAnalysis.resources.dll +0 -0
  223. package/dist/generator/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  224. package/dist/generator/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  225. package/dist/generator/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  226. package/dist/generator/net10.0/pl/Microsoft.CodeAnalysis.resources.dll +0 -0
  227. package/dist/generator/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  228. package/dist/generator/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  229. package/dist/generator/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  230. package/dist/generator/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +0 -0
  231. package/dist/generator/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  232. package/dist/generator/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  233. package/dist/generator/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  234. package/dist/generator/net10.0/ru/Microsoft.CodeAnalysis.resources.dll +0 -0
  235. package/dist/generator/net10.0/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll +0 -0
  236. package/dist/generator/net10.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll +0 -0
  237. package/dist/generator/net10.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll +0 -0
  238. package/dist/generator/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  239. package/dist/generator/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  240. package/dist/generator/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  241. package/dist/generator/net10.0/tr/Microsoft.CodeAnalysis.resources.dll +0 -0
  242. package/dist/generator/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  243. package/dist/generator/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  244. package/dist/generator/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  245. package/dist/generator/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +0 -0
  246. package/dist/generator/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  247. package/dist/generator/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  248. package/dist/generator/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  249. package/dist/generator/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +0 -0
  250. package/dist/generator/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  251. package/dist/generator/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  252. package/dist/generator/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  253. package/dist/generator/pl/Microsoft.CodeAnalysis.resources.dll +0 -0
  254. package/dist/generator/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  255. package/dist/generator/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  256. package/dist/generator/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  257. package/dist/generator/pt-BR/Microsoft.CodeAnalysis.resources.dll +0 -0
  258. package/dist/generator/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  259. package/dist/generator/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  260. package/dist/generator/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  261. package/dist/generator/ru/Microsoft.CodeAnalysis.resources.dll +0 -0
  262. package/dist/generator/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll +0 -0
  263. package/dist/generator/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll +0 -0
  264. package/dist/generator/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll +0 -0
  265. package/dist/generator/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  266. package/dist/generator/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  267. package/dist/generator/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  268. package/dist/generator/tr/Microsoft.CodeAnalysis.resources.dll +0 -0
  269. package/dist/generator/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  270. package/dist/generator/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  271. package/dist/generator/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  272. package/dist/generator/zh-Hans/Microsoft.CodeAnalysis.resources.dll +0 -0
  273. package/dist/generator/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  274. package/dist/generator/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  275. package/dist/generator/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  276. package/dist/generator/zh-Hant/Microsoft.CodeAnalysis.resources.dll +0 -0
  277. package/package.json +64 -0
@@ -0,0 +1,1051 @@
1
+ <?xml version="1.0"?>
2
+ <doc>
3
+ <assembly>
4
+ <name>Azure.Generator.Provisioning</name>
5
+ </assembly>
6
+ <members>
7
+ <member name="T:Azure.Generator.Provisioning.Primitives.IProvisioningPropertyInfo">
8
+ <summary>
9
+ Provides provisioning-specific metadata for a given input property.
10
+ Implemented by both <see cref="T:Azure.Generator.Provisioning.Providers.ProvisioningModelProvider"/> and <see cref="T:Azure.Generator.Provisioning.Providers.ProvisioningResourceProvider"/>
11
+ to supply the Bicep-related information needed by <see cref="M:Azure.Generator.Provisioning.Providers.ProvisioningPropertyProvider.Create(System.String,Microsoft.TypeSpec.Generator.Primitives.CSharpType,System.Boolean,System.Boolean,System.String[],System.String,Microsoft.TypeSpec.Generator.Providers.TypeProvider)"/>.
12
+ </summary>
13
+ </member>
14
+ <member name="M:Azure.Generator.Provisioning.Primitives.IProvisioningPropertyInfo.GetProvisioningPropertyInfo(Microsoft.TypeSpec.Generator.Input.InputModelProperty)">
15
+ <summary>
16
+ Returns the provisioning metadata for the given input property,
17
+ or null if the property should be skipped (e.g., discriminators).
18
+ </summary>
19
+ </member>
20
+ <member name="T:Azure.Generator.Provisioning.Primitives.KnownProvisioningTypes">
21
+ <summary>
22
+ Known ARM common types that the provisioning generator should skip generating
23
+ (they have framework equivalents in Azure.Provisioning).
24
+ </summary>
25
+ </member>
26
+ <member name="F:Azure.Generator.Provisioning.Primitives.KnownProvisioningTypes._inheritableSystemTypes">
27
+ <summary>
28
+ ARM inheritable base types (TrackedResource, ProxyResource, etc.).
29
+ Provisioning types use ProvisionableConstruct/ProvisionableResource as base instead.
30
+ </summary>
31
+ </member>
32
+ <member name="F:Azure.Generator.Provisioning.Primitives.KnownProvisioningTypes._provisioningTypeMap">
33
+ <summary>
34
+ Maps known ARM common type cross-language definition IDs to their Azure.Provisioning equivalents.
35
+ Types in this map should not be generated — the provisioning framework types are used instead.
36
+ </summary>
37
+ </member>
38
+ <member name="M:Azure.Generator.Provisioning.Primitives.KnownProvisioningTypes.IsInheritableSystemType(System.String)">
39
+ <summary>
40
+ Returns true if the given cross-language definition ID is a known ARM inheritable base type.
41
+ </summary>
42
+ </member>
43
+ <member name="M:Azure.Generator.Provisioning.Primitives.KnownProvisioningTypes.IsKnownType(System.String)">
44
+ <summary>
45
+ Returns true if the given cross-language definition ID is a known ARM type
46
+ that has a provisioning framework equivalent and should not be generated.
47
+ </summary>
48
+ </member>
49
+ <member name="M:Azure.Generator.Provisioning.Primitives.KnownProvisioningTypes.TryGetProvisioningType(System.String,Microsoft.TypeSpec.Generator.Primitives.CSharpType@)">
50
+ <summary>
51
+ Tries to get the Azure.Provisioning equivalent type for a known ARM common type.
52
+ </summary>
53
+ </member>
54
+ <member name="T:Azure.Generator.Provisioning.Primitives.ProvisioningPropertyInfo">
55
+ <summary>
56
+ Provisioning metadata for a single property, used to create a <see cref="T:Azure.Generator.Provisioning.Providers.ProvisioningPropertyProvider"/>.
57
+ </summary>
58
+ </member>
59
+ <member name="M:Azure.Generator.Provisioning.Primitives.ProvisioningPropertyInfo.#ctor(System.String,System.Boolean,System.Boolean,System.String[],System.String)">
60
+ <summary>
61
+ Provisioning metadata for a single property, used to create a <see cref="T:Azure.Generator.Provisioning.Providers.ProvisioningPropertyProvider"/>.
62
+ </summary>
63
+ </member>
64
+ <member name="T:Azure.Generator.Provisioning.Providers.ProvisioningEnumProvider">
65
+ <summary>
66
+ Generates a simple C# enum from an InputEnumType.
67
+ Provisioning enums are plain enums (not extensible structs) with optional
68
+ [DataMember(Name = "...")] attributes when the serialized value differs
69
+ from the C# member name.
70
+ </summary>
71
+ </member>
72
+ <member name="T:Azure.Generator.Provisioning.Providers.ProvisioningModelProvider">
73
+ <summary>
74
+ Generates a ProvisionableConstruct subclass from an InputModelType.
75
+ Uses TypeFactory.CreateCSharpType() for all type resolution, which returns
76
+ BicepValue&lt;T&gt; / BicepList&lt;T&gt; / BicepDictionary&lt;T&gt; types directly.
77
+ </summary>
78
+ </member>
79
+ <member name="M:Azure.Generator.Provisioning.Providers.ProvisioningModelProvider.Azure#Generator#Provisioning#Primitives#IProvisioningPropertyInfo#GetProvisioningPropertyInfo(Microsoft.TypeSpec.Generator.Input.InputModelProperty)">
80
+ <inheritdoc/>
81
+ </member>
82
+ <member name="M:Azure.Generator.Provisioning.Providers.ProvisioningModelProvider.FindDiscriminatorProperty">
83
+ <summary>
84
+ Finds the discriminator property by walking up the model's base chain.
85
+ </summary>
86
+ </member>
87
+ <member name="T:Azure.Generator.Provisioning.Providers.ProvisioningPropertyProvider">
88
+ <summary>
89
+ A PropertyProvider that includes provisioning-specific metadata and sets <see cref="P:Microsoft.TypeSpec.Generator.Providers.PropertyProvider.BackingField"/>
90
+ for BicepValue-based properties with Initialize()/Assign() getter/setter patterns.
91
+ Used by both ProvisioningModelProvider and ProvisioningResourceProvider.
92
+ </summary>
93
+ </member>
94
+ <member name="P:Azure.Generator.Provisioning.Providers.ProvisioningPropertyProvider.BicepPath">
95
+ <summary>The Bicep serialization path segments for DefineProperty calls.</summary>
96
+ </member>
97
+ <member name="P:Azure.Generator.Provisioning.Providers.ProvisioningPropertyProvider.IsOutput">
98
+ <summary>Whether this property is output-only (read-only in Bicep).</summary>
99
+ </member>
100
+ <member name="P:Azure.Generator.Provisioning.Providers.ProvisioningPropertyProvider.IsRequired">
101
+ <summary>Whether this property is required.</summary>
102
+ </member>
103
+ <member name="P:Azure.Generator.Provisioning.Providers.ProvisioningPropertyProvider.DefaultValue">
104
+ <summary>Optional default value (e.g., for singleton resource names).</summary>
105
+ </member>
106
+ <member name="M:Azure.Generator.Provisioning.Providers.ProvisioningPropertyProvider.Create(System.String,Microsoft.TypeSpec.Generator.Primitives.CSharpType,System.Boolean,System.Boolean,System.String[],System.String,Microsoft.TypeSpec.Generator.Providers.TypeProvider)">
107
+ <summary>
108
+ Creates a provisioning property with its linked backing field.
109
+ This is the single unified implementation used by both model and resource providers.
110
+ </summary>
111
+ </member>
112
+ <member name="T:Azure.Generator.Provisioning.Providers.ProvisioningResourceProvider">
113
+ <summary>
114
+ Generates a ProvisionableResource subclass from an InputModelType + ArmResourceMetadata.
115
+ Flattens the ARM "properties" bag, includes system properties from the base model chain,
116
+ and generates ResourceVersions, FromExisting, and the resource constructor.
117
+ </summary>
118
+ </member>
119
+ <member name="P:Azure.Generator.Provisioning.Providers.ProvisioningResourceProvider.ResourceMetadata">
120
+ <summary>
121
+ Gets the resource metadata, if this is a base resource type.
122
+ </summary>
123
+ </member>
124
+ <member name="P:Azure.Generator.Provisioning.Providers.ProvisioningResourceProvider.ParentResourceType">
125
+ <summary>
126
+ Gets the parent resource's CSharpType via the output library, or null for top-level resources.
127
+ </summary>
128
+ </member>
129
+ <member name="M:Azure.Generator.Provisioning.Providers.ProvisioningResourceProvider.Azure#Generator#Provisioning#Primitives#IProvisioningPropertyInfo#GetProvisioningPropertyInfo(Microsoft.TypeSpec.Generator.Input.InputModelProperty)">
130
+ <inheritdoc/>
131
+ </member>
132
+ <member name="M:Azure.Generator.Provisioning.Providers.ProvisioningResourceProvider.#ctor(Microsoft.TypeSpec.Generator.Input.InputModelType,Azure.Generator.Management.Models.ArmResourceMetadata)">
133
+ <summary>
134
+ Constructor for base resource types (with metadata from ARM provider schema).
135
+ </summary>
136
+ </member>
137
+ <member name="M:Azure.Generator.Provisioning.Providers.ProvisioningResourceProvider.#ctor(Microsoft.TypeSpec.Generator.Input.InputModelType)">
138
+ <summary>
139
+ Constructor for derived discriminated resource types (no metadata, inherits from base resource).
140
+ </summary>
141
+ </member>
142
+ <member name="M:Azure.Generator.Provisioning.Providers.ProvisioningResourceProvider.CollectOwnProperties">
143
+ <summary>
144
+ Collects only the derived type's own properties (no base chain, no flattening).
145
+ Used for derived discriminated resources.
146
+ </summary>
147
+ </member>
148
+ <member name="M:Azure.Generator.Provisioning.Providers.ProvisioningResourceProvider.FindDiscriminatorProperty">
149
+ <summary>
150
+ Finds the discriminator property by walking up the model's base chain.
151
+ </summary>
152
+ </member>
153
+ <member name="T:Azure.Generator.Provisioning.ProvisioningGenerator">
154
+ <summary>
155
+ The Azure provisioning generator to generate Azure.Provisioning.* libraries
156
+ that produce ProvisionableResource subclasses with BicepValue&lt;T&gt; properties.
157
+ </summary>
158
+ </member>
159
+ <member name="P:Azure.Generator.Provisioning.ProvisioningGenerator.Instance">
160
+ <summary>
161
+ Gets the singleton instance of the provisioning generator.
162
+ </summary>
163
+ </member>
164
+ <member name="M:Azure.Generator.Provisioning.ProvisioningGenerator.#ctor(Microsoft.TypeSpec.Generator.GeneratorContext)">
165
+ <summary>
166
+ Initializes a new instance of the <see cref="T:Azure.Generator.Provisioning.ProvisioningGenerator"/> class.
167
+ </summary>
168
+ <param name="context">The generator context.</param>
169
+ </member>
170
+ <member name="P:Azure.Generator.Provisioning.ProvisioningGenerator.OutputLibrary">
171
+ <inheritdoc/>
172
+ </member>
173
+ <member name="P:Azure.Generator.Provisioning.ProvisioningGenerator.TypeFactory">
174
+ <inheritdoc/>
175
+ </member>
176
+ <member name="M:Azure.Generator.Provisioning.ProvisioningGenerator.Configure">
177
+ <inheritdoc/>
178
+ </member>
179
+ <member name="T:Azure.Generator.Provisioning.ProvisioningOutputLibrary">
180
+ <summary>
181
+ Output library for provisioning generator. Pre-creates all resource providers
182
+ from ArmProviderSchema.Resources and builds model/enum providers from input types.
183
+ </summary>
184
+ </member>
185
+ <member name="P:Azure.Generator.Provisioning.ProvisioningOutputLibrary.Resources">
186
+ <summary>
187
+ Gets all provisioning resource providers.
188
+ </summary>
189
+ </member>
190
+ <member name="M:Azure.Generator.Provisioning.ProvisioningOutputLibrary.TryGetResourcesByModel(Microsoft.TypeSpec.Generator.Input.InputModelType,System.Collections.Generic.IReadOnlyList{Azure.Generator.Provisioning.Providers.ProvisioningResourceProvider}@)">
191
+ <summary>
192
+ Tries to get the resource provider(s) for a given InputModelType.
193
+ Returns false if the model is not a resource model.
194
+ </summary>
195
+ </member>
196
+ <member name="M:Azure.Generator.Provisioning.ProvisioningOutputLibrary.GetResourceByIdPattern(System.String)">
197
+ <summary>
198
+ Gets a resource provider by its ARM resource ID pattern.
199
+ Returns null if not found.
200
+ </summary>
201
+ </member>
202
+ <member name="M:Azure.Generator.Provisioning.ProvisioningOutputLibrary.BuildTypeProviders">
203
+ <inheritdoc/>
204
+ </member>
205
+ <member name="T:Azure.Generator.Provisioning.ProvisioningTypeFactory">
206
+ <summary>
207
+ TypeFactory for provisioning generator that intercepts model/enum creation
208
+ to return provisioning-style type providers (ProvisionableConstruct/ProvisionableResource)
209
+ instead of management-style types.
210
+ </summary>
211
+ </member>
212
+ <member name="M:Azure.Generator.Provisioning.ProvisioningTypeFactory.BuildResourceProviderName">
213
+ <summary>
214
+ Builds the resource provider name from the provisioning namespace.
215
+ For instance, "Azure.Provisioning.KeyVault" returns "KeyVault".
216
+ </summary>
217
+ </member>
218
+ <member name="M:Azure.Generator.Provisioning.ProvisioningTypeFactory.CreateCSharpTypeCore(Microsoft.TypeSpec.Generator.Input.InputType)">
219
+ <inheritdoc/>
220
+ </member>
221
+ <member name="M:Azure.Generator.Provisioning.ProvisioningTypeFactory.GetUnwrappedCSharpType(Microsoft.TypeSpec.Generator.Input.InputType)">
222
+ <summary>
223
+ Resolves an InputType to its raw CSharpType without BicepValue wrapping.
224
+ Used for BicepList/BicepDictionary element types which handle wrapping internally.
225
+ </summary>
226
+ </member>
227
+ <member name="M:Azure.Generator.Provisioning.ProvisioningTypeFactory.CreateModelCore(Microsoft.TypeSpec.Generator.Input.InputModelType)">
228
+ <inheritdoc/>
229
+ </member>
230
+ <member name="M:Azure.Generator.Provisioning.ProvisioningTypeFactory.IsBaseChainResource(Microsoft.TypeSpec.Generator.Input.InputModelType)">
231
+ <summary>
232
+ Checks whether any model in the base chain is a resource model.
233
+ </summary>
234
+ </member>
235
+ <member name="M:Azure.Generator.Provisioning.ProvisioningTypeFactory.CreateEnumCore(Microsoft.TypeSpec.Generator.Input.InputEnumType,Microsoft.TypeSpec.Generator.Providers.TypeProvider)">
236
+ <inheritdoc/>
237
+ </member>
238
+ <member name="M:Azure.Generator.Provisioning.ProvisioningTypeFactory.CreatePropertyCore(Microsoft.TypeSpec.Generator.Input.InputProperty,Microsoft.TypeSpec.Generator.Providers.TypeProvider)">
239
+ <inheritdoc/>
240
+ </member>
241
+ <member name="T:Azure.Generator.Provisioning.Utilities.BicepTypeHelpers">
242
+ <summary>
243
+ Utility methods for classifying and inspecting BicepValue/BicepList/BicepDictionary CSharpTypes.
244
+ </summary>
245
+ </member>
246
+ <member name="M:Azure.Generator.Provisioning.Utilities.BicepTypeHelpers.IsModelType(Microsoft.TypeSpec.Generator.Primitives.CSharpType)">
247
+ <summary>
248
+ Returns true if the type represents a provisioning model (uses DefineModelProperty + AssignOrReplace).
249
+ A type is a "model" if it is either a custom type (from our providers) or a framework type
250
+ that inherits from <see cref="T:Azure.Provisioning.Primitives.ProvisionableConstruct"/>.
251
+ </summary>
252
+ </member>
253
+ <member name="M:Azure.Generator.Provisioning.Utilities.BicepTypeHelpers.IsBicepValueType(Microsoft.TypeSpec.Generator.Primitives.CSharpType)">
254
+ <summary>
255
+ Returns true if the type is <see cref="T:Azure.Provisioning.BicepValue`1"/>.
256
+ </summary>
257
+ </member>
258
+ <member name="M:Azure.Generator.Provisioning.Utilities.BicepTypeHelpers.IsBicepListType(Microsoft.TypeSpec.Generator.Primitives.CSharpType)">
259
+ <summary>
260
+ Returns true if the type is <see cref="T:Azure.Provisioning.BicepList`1"/>.
261
+ </summary>
262
+ </member>
263
+ <member name="M:Azure.Generator.Provisioning.Utilities.BicepTypeHelpers.IsBicepDictionaryType(Microsoft.TypeSpec.Generator.Primitives.CSharpType)">
264
+ <summary>
265
+ Returns true if the type is <see cref="T:Azure.Provisioning.BicepDictionary`1"/>.
266
+ </summary>
267
+ </member>
268
+ <member name="M:Azure.Generator.Provisioning.Utilities.BicepTypeHelpers.GetGenericArgument(Microsoft.TypeSpec.Generator.Primitives.CSharpType)">
269
+ <summary>
270
+ Gets the first generic type argument of a CSharpType, or <c>typeof(object)</c> if none.
271
+ </summary>
272
+ </member>
273
+ <member name="M:Azure.Generator.Provisioning.Utilities.BicepTypeHelpers.BuildDefinePropertyArgs(System.String,System.String[],System.Boolean,System.Boolean,System.String)">
274
+ <summary>
275
+ Builds the argument list for DefineProperty/DefineModelProperty/DefineListProperty/DefineDictionaryProperty calls.
276
+ isOutput and isRequired are independent flags and only emitted when true, using named arguments.
277
+ </summary>
278
+ </member>
279
+ <member name="T:Azure.Generator.Provisioning.Visitors.ResourceDataSuffixVisitor">
280
+ <summary>
281
+ Visitor that removes the "Data" suffix from resource model names.
282
+ The mgmt ResourceVisitor appends "Data" to resource models (e.g., ConfigurationStore → ConfigurationStoreData).
283
+ Provisioning libraries do not use the "Data" suffix (e.g., AppConfigurationStore, not AppConfigurationStoreData).
284
+ This visitor runs after the inherited mgmt visitors and reverts the rename.
285
+ </summary>
286
+ </member>
287
+ <member name="M:Azure.Core.AzureKeyCredentialPolicy.#ctor(Azure.AzureKeyCredential,System.String,System.String)">
288
+ <summary>
289
+ Initializes a new instance of the <see cref="T:Azure.Core.AzureKeyCredentialPolicy"/> class.
290
+ </summary>
291
+ <param name="credential">The <see cref="T:Azure.AzureKeyCredential"/> used to authenticate requests.</param>
292
+ <param name="name">The name of the key header used for the credential.</param>
293
+ <param name="prefix">The prefix to apply before the credential key. For example, a prefix of "SharedAccessKey" would result in
294
+ a value of "SharedAccessKey {credential.Key}" being stamped on the request header with header key of <paramref name="name"/>.</param>
295
+ </member>
296
+ <member name="M:Azure.Core.AzureKeyCredentialPolicy.OnSendingRequest(Azure.Core.HttpMessage)">
297
+ <inheritdoc/>
298
+ </member>
299
+ <member name="T:Azure.Core.OperationInternal">
300
+ <summary>
301
+ A helper class used to build long-running operation instances. In order to use this helper:
302
+ <list type="number">
303
+ <item>Make sure your LRO implements the <see cref="T:Azure.Core.IOperation"/> interface.</item>
304
+ <item>Add a private <see cref="T:Azure.Core.OperationInternal"/> field to your LRO, and instantiate it during construction.</item>
305
+ <item>Delegate method calls to the <see cref="T:Azure.Core.OperationInternal"/> implementations.</item>
306
+ </list>
307
+ Supported members:
308
+ <list type="bullet">
309
+ <item>
310
+ <description><see cref="P:Azure.Core.OperationInternalBase.HasCompleted"/></description>
311
+ </item>
312
+ <item>
313
+ <description><see cref="P:Azure.Core.OperationInternalBase.RawResponse"/>, used for <see cref="M:Azure.Operation.GetRawResponse"/></description>
314
+ </item>
315
+ <item>
316
+ <description><see cref="M:Azure.Core.OperationInternalBase.UpdateStatus(System.Threading.CancellationToken)"/></description>
317
+ </item>
318
+ <item>
319
+ <description><see cref="M:Azure.Core.OperationInternalBase.UpdateStatusAsync(System.Threading.CancellationToken)"/></description>
320
+ </item>
321
+ <item>
322
+ <description><see cref="M:Azure.Core.OperationInternalBase.WaitForCompletionResponseAsync(System.Threading.CancellationToken)"/></description>
323
+ </item>
324
+ <item>
325
+ <description><see cref="M:Azure.Core.OperationInternalBase.WaitForCompletionResponseAsync(System.TimeSpan,System.Threading.CancellationToken)"/></description>
326
+ </item>
327
+ </list>
328
+ </summary>
329
+ </member>
330
+ <member name="M:Azure.Core.OperationInternal.Succeeded(Azure.Response)">
331
+ <summary>
332
+ Initializes a new instance of the <see cref="T:Azure.Core.OperationInternal"/> class in a final successful state.
333
+ </summary>
334
+ <param name="rawResponse">The final value of <see cref="P:Azure.Core.OperationInternalBase.RawResponse"/>.</param>
335
+ </member>
336
+ <member name="M:Azure.Core.OperationInternal.Failed(Azure.Response,Azure.RequestFailedException)">
337
+ <summary>
338
+ Initializes a new instance of the <see cref="T:Azure.Core.OperationInternal"/> class in a final failed state.
339
+ </summary>
340
+ <param name="rawResponse">The final value of <see cref="P:Azure.Core.OperationInternalBase.RawResponse"/>.</param>
341
+ <param name="operationFailedException">The exception that will be thrown by <c>UpdateStatusAsync</c>.</param>
342
+ </member>
343
+ <member name="M:Azure.Core.OperationInternal.#ctor(Azure.Core.IOperation,Azure.Core.Pipeline.ClientDiagnostics,Azure.Response,System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}},Azure.Core.DelayStrategy)">
344
+ <summary>
345
+ Initializes a new instance of the <see cref="T:Azure.Core.OperationInternal"/> class.
346
+ </summary>
347
+ <param name="operation">The long-running operation making use of this class. Passing "<c>this</c>" is expected.</param>
348
+ <param name="clientDiagnostics">Used for diagnostic scope and exception creation. This is expected to be the instance created during the construction of your main client.</param>
349
+ <param name="rawResponse">
350
+ The initial value of <see cref="P:Azure.Core.OperationInternalBase.RawResponse"/>. Usually, long-running operation objects can be instantiated in two ways:
351
+ <list type="bullet">
352
+ <item>
353
+ When calling a client's "<c>Start&lt;OperationName&gt;</c>" method, a service call is made to start the operation, and an <see cref="T:Azure.Operation"/> instance is returned.
354
+ In this case, the response received from this service call can be passed here.
355
+ </item>
356
+ <item>
357
+ When a user instantiates an <see cref="T:Azure.Operation"/> directly using a public constructor, there's no previous service call. In this case, passing <c>null</c> is expected.
358
+ </item>
359
+ </list>
360
+ </param>
361
+ <param name="operationTypeName">
362
+ The type name of the long-running operation making use of this class. Used when creating diagnostic scopes. If left <c>null</c>, the type name will be inferred based on the
363
+ parameter <paramref name="operation"/>.
364
+ </param>
365
+ <param name="scopeAttributes">The attributes to use during diagnostic scope creation.</param>
366
+ <param name="fallbackStrategy"> The delay strategy to use. Default is <see cref="T:Azure.Core.FixedDelayWithNoJitterStrategy"/>.</param>
367
+ </member>
368
+ <member name="T:Azure.Core.IOperation">
369
+ <summary>
370
+ An interface used by <see cref="T:Azure.Core.OperationInternal"/> for making service calls and updating state. It's expected that
371
+ your long-running operation classes implement this interface.
372
+ </summary>
373
+ </member>
374
+ <member name="M:Azure.Core.IOperation.UpdateStateAsync(System.Boolean,System.Threading.CancellationToken)">
375
+ <summary>
376
+ Calls the service and updates the state of the long-running operation. Properties directly handled by the
377
+ <see cref="T:Azure.Core.OperationInternal"/> class, such as <see cref="P:Azure.Core.OperationInternalBase.RawResponse"/>
378
+ don't need to be updated. Operation-specific properties, such as "<c>CreateOn</c>" or "<c>LastModified</c>",
379
+ must be manually updated by the operation implementing this method.
380
+ <example>Usage example:
381
+ <code>
382
+ async ValueTask&lt;OperationState&gt; IOperation.UpdateStateAsync(bool async, CancellationToken cancellationToken)<br/>
383
+ {<br/>
384
+ Response&lt;R&gt; response = async ? &lt;async service call&gt; : &lt;sync service call&gt;;<br/>
385
+ if (&lt;operation succeeded&gt;) return OperationState.Success(response.GetRawResponse(), &lt;parse response&gt;);<br/>
386
+ if (&lt;operation failed&gt;) return OperationState.Failure(response.GetRawResponse());<br/>
387
+ return OperationState.Pending(response.GetRawResponse());<br/>
388
+ }
389
+ </code>
390
+ </example>
391
+ </summary>
392
+ <param name="async"><c>true</c> if the call should be executed asynchronously. Otherwise, <c>false</c>.</param>
393
+ <param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> controlling the request lifetime.</param>
394
+ <returns>
395
+ A structure indicating the current operation state. The <see cref="T:Azure.Core.OperationState"/> structure must be instantiated by one of
396
+ its static methods:
397
+ <list type="bullet">
398
+ <item>Use <see cref="M:Azure.Core.OperationState.Success(Azure.Response)"/> when the operation has completed successfully.</item>
399
+ <item>Use <see cref="M:Azure.Core.OperationState.Failure(Azure.Response,Azure.RequestFailedException)"/> when the operation has completed with failures.</item>
400
+ <item>Use <see cref="M:Azure.Core.OperationState.Pending(Azure.Response)"/> when the operation has not completed yet.</item>
401
+ </list>
402
+ </returns>
403
+ </member>
404
+ <member name="M:Azure.Core.IOperation.GetRehydrationToken">
405
+ <summary>
406
+ Get a token that can be used to rehydrate the operation.
407
+ </summary>
408
+ </member>
409
+ <member name="T:Azure.Core.OperationState">
410
+ <summary>
411
+ A helper structure passed to <see cref="T:Azure.Core.OperationInternal"/> to indicate the current operation state. This structure must be
412
+ instantiated by one of its static methods, depending on the operation state:
413
+ <list type="bullet">
414
+ <item>Use <see cref="M:Azure.Core.OperationState.Success(Azure.Response)"/> when the operation has completed successfully.</item>
415
+ <item>Use <see cref="M:Azure.Core.OperationState.Failure(Azure.Response,Azure.RequestFailedException)"/> when the operation has completed with failures.</item>
416
+ <item>Use <see cref="M:Azure.Core.OperationState.Pending(Azure.Response)"/> when the operation has not completed yet.</item>
417
+ </list>
418
+ </summary>
419
+ </member>
420
+ <member name="M:Azure.Core.OperationState.Success(Azure.Response)">
421
+ <summary>
422
+ Instantiates an <see cref="T:Azure.Core.OperationState"/> indicating the operation has completed successfully.
423
+ </summary>
424
+ <param name="rawResponse">The HTTP response obtained during the status update.</param>
425
+ <returns>A new <see cref="T:Azure.Core.OperationState"/> instance.</returns>
426
+ <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="rawResponse"/> is <c>null</c>.</exception>
427
+ </member>
428
+ <member name="M:Azure.Core.OperationState.Failure(Azure.Response,Azure.RequestFailedException)">
429
+ <summary>
430
+ Instantiates an <see cref="T:Azure.Core.OperationState"/> indicating the operation has completed with failures.
431
+ </summary>
432
+ <param name="rawResponse">The HTTP response obtained during the status update.</param>
433
+ <param name="operationFailedException">
434
+ The exception to throw from <c>UpdateStatus</c> because of the operation failure. If left <c>null</c>,
435
+ a default exception is created based on the <paramref name="rawResponse"/> parameter.
436
+ </param>
437
+ <returns>A new <see cref="T:Azure.Core.OperationState"/> instance.</returns>
438
+ <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="rawResponse"/> is <c>null</c>.</exception>
439
+ </member>
440
+ <member name="M:Azure.Core.OperationState.Pending(Azure.Response)">
441
+ <summary>
442
+ Instantiates an <see cref="T:Azure.Core.OperationState"/> indicating the operation has not completed yet.
443
+ </summary>
444
+ <param name="rawResponse">The HTTP response obtained during the status update.</param>
445
+ <returns>A new <see cref="T:Azure.Core.OperationState"/> instance.</returns>
446
+ <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="rawResponse"/> is <c>null</c>.</exception>
447
+ </member>
448
+ <member name="M:Azure.Core.NextLinkOperationImplementation.GetFinalUri(System.String)">
449
+ <summary>
450
+ This function is used to get the final request uri after the lro has completed.
451
+ </summary>
452
+ </member>
453
+ <member name="T:Azure.Core.NextLinkOperationImplementation.EmptyResponse">
454
+ <summary>
455
+ This is only used for final get of the delete LRO, we just want to return an empty response with 204 to the user for this case.
456
+ </summary>
457
+ </member>
458
+ <member name="M:Azure.Core.NextLinkOperationImplementation.EmptyResponse.ContainsHeader(System.String)">
459
+ <inheritdoc />
460
+ </member>
461
+ <member name="M:Azure.Core.NextLinkOperationImplementation.EmptyResponse.EnumerateHeaders">
462
+ <inheritdoc />
463
+ </member>
464
+ <member name="M:Azure.Core.NextLinkOperationImplementation.EmptyResponse.TryGetHeader(System.String,System.String@)">
465
+ <inheritdoc />
466
+ </member>
467
+ <member name="M:Azure.Core.NextLinkOperationImplementation.EmptyResponse.TryGetHeaderValues(System.String,System.Collections.Generic.IEnumerable{System.String}@)">
468
+ <inheritdoc />
469
+ </member>
470
+ <member name="M:Azure.Core.Pipeline.ClientDiagnostics.#ctor(Azure.Core.ClientOptions,System.Nullable{System.Boolean})">
471
+ <summary>
472
+ Initializes a new instance of the <see cref="T:Azure.Core.Pipeline.ClientDiagnostics"/> class.
473
+ </summary>
474
+ <param name="options">The customer provided client options object.</param>
475
+ <param name="suppressNestedClientActivities">Flag controlling if <see cref="T:System.Diagnostics.Activity"/>
476
+ created by this <see cref="T:Azure.Core.Pipeline.ClientDiagnostics"/> for client method calls should be suppressed when called
477
+ by other Azure SDK client methods. It's recommended to set it to true for new clients; use default (null)
478
+ for backward compatibility reasons, or set it to false to explicitly disable suppression for specific cases.
479
+ The default value could change in the future, the flag should be only set to false if suppression for the client
480
+ should never be enabled.</param>
481
+ </member>
482
+ <member name="M:Azure.Core.Pipeline.ClientDiagnostics.#ctor(System.String,System.String,Azure.Core.DiagnosticsOptions,System.Nullable{System.Boolean})">
483
+ <summary>
484
+ Initializes a new instance of the <see cref="T:Azure.Core.Pipeline.ClientDiagnostics"/> class.
485
+ </summary>
486
+ <param name="optionsNamespace">Namespace of the client class, such as Azure.Storage or Azure.AppConfiguration.</param>
487
+ <param name="providerNamespace">Azure Resource Provider namespace of the Azure service SDK is primarily used for.</param>
488
+ <param name="diagnosticsOptions">The customer provided client diagnostics options.</param>
489
+ <param name="suppressNestedClientActivities">Flag controlling if <see cref="T:System.Diagnostics.Activity"/>
490
+ created by this <see cref="T:Azure.Core.Pipeline.ClientDiagnostics"/> for client method calls should be suppressed when called
491
+ by other Azure SDK client methods. It's recommended to set it to true for new clients, use default (null) for old clients
492
+ for backward compatibility reasons, or set it to false to explicitly disable suppression for specific cases.
493
+ The default value could change in the future, the flag should be only set to false if suppression for the client
494
+ should never be enabled.</param>
495
+ </member>
496
+ <member name="M:Azure.Core.Pipeline.DiagnosticScopeFactory.#ctor(System.String,System.String,System.Boolean,System.Boolean,System.Boolean)">
497
+ <summary>
498
+ Creates diagnostic scope factory.
499
+ </summary>
500
+ <param name="clientNamespace">The namespace which is used as a prefix for all ActivitySources created by the factory and the name of DiagnosticSource (when used).</param>
501
+ <param name="resourceProviderNamespace">Azure resource provider namespace.</param>
502
+ <param name="isActivityEnabled">Flag indicating if distributed tracing is enabled.</param>
503
+ <param name="suppressNestedClientActivities">Flag indicating if nested Azure SDK activities describing public API calls should be suppressed.</param>
504
+ <param name="isStable">Whether instrumentation is considered stable. When false, experimental feature flag controls if tracing is enabled.</param>
505
+ </member>
506
+ <member name="M:Azure.Core.Pipeline.DiagnosticScopeFactory.GetActivitySource(System.String,System.String)">
507
+ <summary>
508
+ This method combines client namespace and operation name into an ActivitySource name and creates the activity source.
509
+ For example:
510
+ ns: Azure.Storage.Blobs
511
+ name: BlobClient.DownloadTo
512
+ result Azure.Storage.Blobs.BlobClient
513
+ </summary>
514
+ </member>
515
+ <member name="M:Azure.Core.Pipeline.DiagnosticScope.AddLink(System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
516
+ <summary>
517
+ Adds a link to the scope. This must be called before <see cref="M:Azure.Core.Pipeline.DiagnosticScope.Start"/> has been called for the DiagnosticScope.
518
+ </summary>
519
+ <param name="traceparent">The traceparent for the link.</param>
520
+ <param name="tracestate">The tracestate for the link.</param>
521
+ <param name="attributes">Optional attributes to associate with the link.</param>
522
+ </member>
523
+ <member name="M:Azure.Core.Pipeline.DiagnosticScope.SetTraceContext(System.String,System.String)">
524
+ <summary>
525
+ Sets the trace context for the current scope.
526
+ </summary>
527
+ <param name="traceparent">The trace parent to set for the current scope.</param>
528
+ <param name="tracestate">The trace state to set for the current scope.</param>
529
+ </member>
530
+ <member name="M:Azure.Core.Pipeline.DiagnosticScope.Failed(System.Exception)">
531
+ <summary>
532
+ Marks the scope as failed.
533
+ </summary>
534
+ <param name="exception">The exception to associate with the failed scope.</param>
535
+ </member>
536
+ <member name="M:Azure.Core.Pipeline.DiagnosticScope.Failed(System.String)">
537
+ <summary>
538
+ Marks the scope as failed with low-cardinality error.type attribute.
539
+ </summary>
540
+ <param name="errorCode">Error code to associate with the failed scope.</param>
541
+ </member>
542
+ <member name="T:Azure.Core.Pipeline.ActivityExtensions">
543
+ <summary>
544
+ Until Activity Source is no longer considered experimental.
545
+ </summary>
546
+ </member>
547
+ <member name="T:Azure.Core.Pipeline.TaskExtensions.Enumerable`1">
548
+ <summary>
549
+ Both <see cref="T:Azure.Core.Pipeline.TaskExtensions.Enumerable`1"/> and <see cref="T:Azure.Core.Pipeline.TaskExtensions.Enumerator`1"/> are defined as public structs so that foreach can use duck typing
550
+ to call <see cref="M:Azure.Core.Pipeline.TaskExtensions.Enumerable`1.GetEnumerator"/> and avoid heap memory allocation.
551
+ Please don't delete this method and don't make these types private.
552
+ </summary>
553
+ <typeparam name="T"></typeparam>
554
+ </member>
555
+ <member name="T:Azure.Core.AppContextSwitchHelper">
556
+ <summary>
557
+ Helper for interacting with AppConfig settings and their related Environment variable settings.
558
+ </summary>
559
+ </member>
560
+ <member name="M:Azure.Core.AppContextSwitchHelper.GetConfigValue(System.String,System.String)">
561
+ <summary>
562
+ Determines if either an AppContext switch or its corresponding Environment Variable is set
563
+ </summary>
564
+ <param name="appContexSwitchName">Name of the AppContext switch.</param>
565
+ <param name="environmentVariableName">Name of the Environment variable.</param>
566
+ <returns>If the AppContext switch has been set, returns the value of the switch.
567
+ If the AppContext switch has not been set, returns the value of the environment variable.
568
+ False if neither is set.
569
+ </returns>
570
+ </member>
571
+ <member name="T:Azure.Core.SequentialDelayStrategy">
572
+ <summary>
573
+ A delay strategy that uses a fixed sequence of delays with no jitter applied. This is used by management LROs.
574
+ </summary>
575
+ </member>
576
+ <member name="T:Azure.Core.OperationInternal`1">
577
+ <summary>
578
+ A helper class used to build long-running operation instances. In order to use this helper:
579
+ <list type="number">
580
+ <item>Make sure your LRO implements the <see cref="T:Azure.Core.IOperation`1"/> interface.</item>
581
+ <item>Add a private <see cref="T:Azure.Core.OperationInternal`1"/> field to your LRO, and instantiate it during construction.</item>
582
+ <item>Delegate method calls to the <see cref="T:Azure.Core.OperationInternal`1"/> implementations.</item>
583
+ </list>
584
+ Supported members:
585
+ <list type="bullet">
586
+ <item>
587
+ <description><see cref="P:Azure.Core.OperationInternal`1.HasValue"/></description>
588
+ </item>
589
+ <item>
590
+ <description><see cref="P:Azure.Core.OperationInternalBase.HasCompleted"/></description>
591
+ </item>
592
+ <item>
593
+ <description><see cref="P:Azure.Core.OperationInternal`1.Value"/></description>
594
+ </item>
595
+ <item>
596
+ <description><see cref="P:Azure.Core.OperationInternalBase.RawResponse"/>, used for <see cref="M:Azure.Operation.GetRawResponse"/></description>
597
+ </item>
598
+ <item>
599
+ <description><see cref="M:Azure.Core.OperationInternalBase.UpdateStatus(System.Threading.CancellationToken)"/></description>
600
+ </item>
601
+ <item>
602
+ <description><see cref="M:Azure.Core.OperationInternalBase.UpdateStatusAsync(System.Threading.CancellationToken)"/></description>
603
+ </item>
604
+ <item>
605
+ <description><see cref="M:Azure.Core.OperationInternal`1.WaitForCompletionAsync(System.Threading.CancellationToken)"/></description>
606
+ </item>
607
+ <item>
608
+ <description><see cref="M:Azure.Core.OperationInternal`1.WaitForCompletionAsync(System.TimeSpan,System.Threading.CancellationToken)"/></description>
609
+ </item>
610
+ </list>
611
+ </summary>
612
+ <typeparam name="T">The final result of the long-running operation. Must match the type used in <see cref="T:Azure.Operation`1"/>.</typeparam>
613
+ </member>
614
+ <member name="M:Azure.Core.OperationInternal`1.Succeeded(Azure.Response,`0)">
615
+ <summary>
616
+ Initializes a new instance of the <see cref="T:Azure.Core.OperationInternal"/> class in a final successful state.
617
+ </summary>
618
+ <param name="rawResponse">The final value of <see cref="P:Azure.Core.OperationInternalBase.RawResponse"/>.</param>
619
+ <param name="value">The final result of the long-running operation.</param>
620
+ </member>
621
+ <member name="M:Azure.Core.OperationInternal`1.Failed(Azure.Response,Azure.RequestFailedException)">
622
+ <summary>
623
+ Initializes a new instance of the <see cref="T:Azure.Core.OperationInternal"/> class in a final failed state.
624
+ </summary>
625
+ <param name="rawResponse">The final value of <see cref="P:Azure.Core.OperationInternalBase.RawResponse"/>.</param>
626
+ <param name="operationFailedException">The exception that will be thrown by <c>UpdateStatusAsync</c>.</param>
627
+ </member>
628
+ <member name="M:Azure.Core.OperationInternal`1.#ctor(Azure.Core.IOperation{`0},Azure.Core.Pipeline.ClientDiagnostics,Azure.Response,System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}},Azure.Core.DelayStrategy)">
629
+ <summary>
630
+ Initializes a new instance of the <see cref="T:Azure.Core.OperationInternal`1"/> class.
631
+ </summary>
632
+ <param name="operation">The long-running operation making use of this class. Passing "<c>this</c>" is expected.</param>
633
+ <param name="clientDiagnostics">Used for diagnostic scope and exception creation. This is expected to be the instance created during the construction of your main client.</param>
634
+ <param name="rawResponse">
635
+ The initial value of <see cref="P:Azure.Core.OperationInternalBase.RawResponse"/>. Usually, long-running operation objects can be instantiated in two ways:
636
+ <list type="bullet">
637
+ <item>
638
+ When calling a client's "<c>Start&lt;OperationName&gt;</c>" method, a service call is made to start the operation, and an <see cref="T:Azure.Operation`1"/> instance is returned.
639
+ In this case, the response received from this service call can be passed here.
640
+ </item>
641
+ <item>
642
+ When a user instantiates an <see cref="T:Azure.Operation`1"/> directly using a public constructor, there's no previous service call. In this case, passing <c>null</c> is expected.
643
+ </item>
644
+ </list>
645
+ </param>
646
+ <param name="operationTypeName">
647
+ The type name of the long-running operation making use of this class. Used when creating diagnostic scopes. If left <c>null</c>, the type name will be inferred based on the
648
+ parameter <paramref name="operation"/>.
649
+ </param>
650
+ <param name="scopeAttributes">The attributes to use during diagnostic scope creation.</param>
651
+ <param name="fallbackStrategy">The delay strategy when Retry-After header is not present. When it is present, the longer of the two delays will be used.
652
+ Default is <see cref="T:Azure.Core.FixedDelayWithNoJitterStrategy"/>.</param>
653
+ </member>
654
+ <member name="P:Azure.Core.OperationInternal`1.HasValue">
655
+ <summary>
656
+ Returns <c>true</c> if the long-running operation completed successfully and has produced a final result.
657
+ <example>Usage example:
658
+ <code>
659
+ public bool HasValue => _operationInternal.HasValue;
660
+ </code>
661
+ </example>
662
+ </summary>
663
+ </member>
664
+ <member name="P:Azure.Core.OperationInternal`1.Value">
665
+ <summary>
666
+ The final result of the long-running operation.
667
+ <example>Usage example:
668
+ <code>
669
+ public T Value => _operationInternal.Value;
670
+ </code>
671
+ </example>
672
+ </summary>
673
+ <exception cref="T:System.InvalidOperationException">Thrown when the operation has not completed yet.</exception>
674
+ <exception cref="T:Azure.RequestFailedException">Thrown when the operation has completed with failures.</exception>
675
+ </member>
676
+ <member name="M:Azure.Core.OperationInternal`1.WaitForCompletionAsync(System.Threading.CancellationToken)">
677
+ <summary>
678
+ Periodically calls <see cref="M:Azure.Core.OperationInternalBase.UpdateStatusAsync(System.Threading.CancellationToken)"/> until the long-running operation completes.
679
+ After each service call, a retry-after header may be returned to communicate that there is no reason to poll
680
+ for status change until the specified time has passed.
681
+ Headers supported are: "Retry-After", "retry-after-ms", and "x-ms-retry-after-ms",
682
+ <example>Usage example:
683
+ <code>
684
+ public async ValueTask&lt;Response&lt;T&gt;&gt; WaitForCompletionAsync(CancellationToken cancellationToken) =>
685
+ await _operationInternal.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false);
686
+ </code>
687
+ </example>
688
+ </summary>
689
+ <param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> controlling the request lifetime.</param>
690
+ <returns>The last HTTP response received from the server, including the final result of the long-running operation.</returns>
691
+ <exception cref="T:Azure.RequestFailedException">Thrown if there's been any issues during the connection, or if the operation has completed with failures.</exception>
692
+ </member>
693
+ <member name="M:Azure.Core.OperationInternal`1.WaitForCompletionAsync(System.TimeSpan,System.Threading.CancellationToken)">
694
+ <summary>
695
+ Periodically calls <see cref="M:Azure.Core.OperationInternalBase.UpdateStatusAsync(System.Threading.CancellationToken)"/> until the long-running operation completes. The interval
696
+ between calls is defined by the parameter <paramref name="pollingInterval"/>, but it can change based on information returned
697
+ from the server. After each service call, a retry-after header may be returned to communicate that there is no reason to poll
698
+ for status change until the specified time has passed. In this case, the maximum value between the <paramref name="pollingInterval"/>
699
+ parameter and the retry-after header is chosen as the wait interval. Headers supported are: "Retry-After", "retry-after-ms",
700
+ and "x-ms-retry-after-ms".
701
+ <example>Usage example:
702
+ <code>
703
+ public async ValueTask&lt;Response&lt;T&gt;&gt; WaitForCompletionAsync(TimeSpan pollingInterval, CancellationToken cancellationToken) =>
704
+ await _operationInternal.WaitForCompletionAsync(pollingInterval, cancellationToken).ConfigureAwait(false);
705
+ </code>
706
+ </example>
707
+ </summary>
708
+ <param name="pollingInterval">The interval between status requests to the server.</param>
709
+ <param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> controlling the request lifetime.</param>
710
+ <returns>The last HTTP response received from the server, including the final result of the long-running operation.</returns>
711
+ <exception cref="T:Azure.RequestFailedException">Thrown if there's been any issues during the connection, or if the operation has completed with failures.</exception>
712
+ </member>
713
+ <member name="M:Azure.Core.OperationInternal`1.WaitForCompletion(System.Threading.CancellationToken)">
714
+ <summary>
715
+ Periodically calls <see cref="M:Azure.Core.OperationInternalBase.UpdateStatus(System.Threading.CancellationToken)"/> until the long-running operation completes.
716
+ After each service call, a retry-after header may be returned to communicate that there is no reason to poll
717
+ for status change until the specified time has passed.
718
+ Headers supported are: "Retry-After", "retry-after-ms", and "x-ms-retry-after-ms",
719
+ <example>Usage example:
720
+ <code>
721
+ public async ValueTask&lt;Response&lt;T&gt;&gt; WaitForCompletionAsync(CancellationToken cancellationToken) =>
722
+ await _operationInternal.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false);
723
+ </code>
724
+ </example>
725
+ </summary>
726
+ <param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> controlling the request lifetime.</param>
727
+ <returns>The last HTTP response received from the server, including the final result of the long-running operation.</returns>
728
+ <exception cref="T:Azure.RequestFailedException">Thrown if there's been any issues during the connection, or if the operation has completed with failures.</exception>
729
+ </member>
730
+ <member name="M:Azure.Core.OperationInternal`1.WaitForCompletion(System.TimeSpan,System.Threading.CancellationToken)">
731
+ <summary>
732
+ Periodically calls <see cref="M:Azure.Core.OperationInternalBase.UpdateStatus(System.Threading.CancellationToken)"/> until the long-running operation completes. The interval
733
+ between calls is defined by the <see cref="T:Azure.Core.FixedDelayWithNoJitterStrategy"/>, which takes into account any retry-after header that is returned
734
+ from the server.
735
+ <example>Usage example:
736
+ <code>
737
+ public async ValueTask&lt;Response&lt;T&gt;&gt; WaitForCompletionAsync(CancellationToken cancellationToken) =>
738
+ await _operationInternal.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false);
739
+ </code>
740
+ </example>
741
+ </summary>
742
+ <param name="pollingInterval">The interval between status requests to the server.</param>
743
+ <param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> controlling the request lifetime.</param>
744
+ <returns>The last HTTP response received from the server, including the final result of the long-running operation.</returns>
745
+ <exception cref="T:Azure.RequestFailedException">Thrown if there's been any issues during the connection, or if the operation has completed with failures.</exception>
746
+ </member>
747
+ <member name="T:Azure.Core.IOperation`1">
748
+ <summary>
749
+ An interface used by <see cref="T:Azure.Core.OperationInternal`1"/> for making service calls and updating state. It's expected that
750
+ your long-running operation classes implement this interface.
751
+ </summary>
752
+ <typeparam name="T">The final result of the long-running operation. Must match the type used in <see cref="T:Azure.Operation`1"/>.</typeparam>
753
+ </member>
754
+ <member name="M:Azure.Core.IOperation`1.UpdateStateAsync(System.Boolean,System.Threading.CancellationToken)">
755
+ <summary>
756
+ Calls the service and updates the state of the long-running operation. Properties directly handled by the
757
+ <see cref="T:Azure.Core.OperationInternal`1"/> class, such as <see cref="P:Azure.Core.OperationInternalBase.RawResponse"/> or
758
+ <see cref="P:Azure.Core.OperationInternal`1.Value"/>, don't need to be updated. Operation-specific properties, such
759
+ as "<c>CreateOn</c>" or "<c>LastModified</c>", must be manually updated by the operation implementing this
760
+ method.
761
+ <example>Usage example:
762
+ <code>
763
+ async ValueTask&lt;OperationState&lt;T&gt;&gt; IOperation&lt;T&gt;.UpdateStateAsync(bool async, CancellationToken cancellationToken)<br/>
764
+ {<br/>
765
+ Response&lt;R&gt; response = async ? &lt;async service call&gt; : &lt;sync service call&gt;;<br/>
766
+ if (&lt;operation succeeded&gt;) return OperationState&lt;T&gt;.Success(response.GetRawResponse(), &lt;parse response&gt;);<br/>
767
+ if (&lt;operation failed&gt;) return OperationState&lt;T&gt;.Failure(response.GetRawResponse());<br/>
768
+ return OperationState&lt;T&gt;.Pending(response.GetRawResponse());<br/>
769
+ }
770
+ </code>
771
+ </example>
772
+ </summary>
773
+ <param name="async"><c>true</c> if the call should be executed asynchronously. Otherwise, <c>false</c>.</param>
774
+ <param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> controlling the request lifetime.</param>
775
+ <returns>
776
+ A structure indicating the current operation state. The <see cref="T:Azure.Core.OperationState`1"/> structure must be instantiated by one of
777
+ its static methods:
778
+ <list type="bullet">
779
+ <item>Use <see cref="M:Azure.Core.OperationState`1.Success(Azure.Response,`0)"/> when the operation has completed successfully.</item>
780
+ <item>Use <see cref="M:Azure.Core.OperationState`1.Failure(Azure.Response,Azure.RequestFailedException)"/> when the operation has completed with failures.</item>
781
+ <item>Use <see cref="M:Azure.Core.OperationState`1.Pending(Azure.Response)"/> when the operation has not completed yet.</item>
782
+ </list>
783
+ </returns>
784
+ </member>
785
+ <member name="M:Azure.Core.IOperation`1.GetRehydrationToken">
786
+ <summary>
787
+ Get a token that can be used to rehydrate the operation.
788
+ </summary>
789
+ </member>
790
+ <member name="T:Azure.Core.OperationState`1">
791
+ <summary>
792
+ A helper structure passed to <see cref="T:Azure.Core.OperationInternal`1"/> to indicate the current operation state. This structure must be
793
+ instantiated by one of its static methods, depending on the operation state:
794
+ <list type="bullet">
795
+ <item>Use <see cref="M:Azure.Core.OperationState`1.Success(Azure.Response,`0)"/> when the operation has completed successfully.</item>
796
+ <item>Use <see cref="M:Azure.Core.OperationState`1.Failure(Azure.Response,Azure.RequestFailedException)"/> when the operation has completed with failures.</item>
797
+ <item>Use <see cref="M:Azure.Core.OperationState`1.Pending(Azure.Response)"/> when the operation has not completed yet.</item>
798
+ </list>
799
+ </summary>
800
+ <typeparam name="T">The final result of the long-running operation. Must match the type used in <see cref="T:Azure.Operation`1"/>.</typeparam>
801
+ </member>
802
+ <member name="M:Azure.Core.OperationState`1.Success(Azure.Response,`0)">
803
+ <summary>
804
+ Instantiates an <see cref="T:Azure.Core.OperationState`1"/> indicating the operation has completed successfully.
805
+ </summary>
806
+ <param name="rawResponse">The HTTP response obtained during the status update.</param>
807
+ <param name="value">The final result of the long-running operation.</param>
808
+ <returns>A new <see cref="T:Azure.Core.OperationState`1"/> instance.</returns>
809
+ <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="rawResponse"/> or <paramref name="value"/> is <c>null</c>.</exception>
810
+ </member>
811
+ <member name="M:Azure.Core.OperationState`1.Failure(Azure.Response,Azure.RequestFailedException)">
812
+ <summary>
813
+ Instantiates an <see cref="T:Azure.Core.OperationState`1"/> indicating the operation has completed with failures.
814
+ </summary>
815
+ <param name="rawResponse">The HTTP response obtained during the status update.</param>
816
+ <param name="operationFailedException">
817
+ The exception to throw from <c>UpdateStatus</c> because of the operation failure. The same exception will be thrown when
818
+ <see cref="P:Azure.Core.OperationInternal`1.Value"/> is called. If left <c>null</c>, a default exception is created based on the
819
+ <paramref name="rawResponse"/> parameter.
820
+ </param>
821
+ <returns>A new <see cref="T:Azure.Core.OperationState`1"/> instance.</returns>
822
+ <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="rawResponse"/> is <c>null</c>.</exception>
823
+ </member>
824
+ <member name="M:Azure.Core.OperationState`1.Pending(Azure.Response)">
825
+ <summary>
826
+ Instantiates an <see cref="T:Azure.Core.OperationState`1"/> indicating the operation has not completed yet.
827
+ </summary>
828
+ <param name="rawResponse">The HTTP response obtained during the status update.</param>
829
+ <returns>A new <see cref="T:Azure.Core.OperationState`1"/> instance.</returns>
830
+ <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="rawResponse"/> is <c>null</c>.</exception>
831
+ </member>
832
+ <member name="P:Azure.Core.OperationInternalBase.RawResponse">
833
+ <summary>
834
+ The last HTTP response received from the server. Its update already handled in calls to "<c>UpdateStatus</c>" and
835
+ "<c>WaitForCompletionAsync</c>", but custom methods not supported by this class, such as "<c>CancelOperation</c>",
836
+ must update it as well.
837
+ <example>Usage example:
838
+ <code>
839
+ public Response GetRawResponse() => _operationInternal.RawResponse;
840
+ </code>
841
+ </example>
842
+ </summary>
843
+ </member>
844
+ <member name="P:Azure.Core.OperationInternalBase.HasCompleted">
845
+ <summary>
846
+ Returns <c>true</c> if the long-running operation has completed.
847
+ <example>Usage example:
848
+ <code>
849
+ public bool HasCompleted => _operationInternal.HasCompleted;
850
+ </code>
851
+ </example>
852
+ </summary>
853
+ </member>
854
+ <member name="M:Azure.Core.OperationInternalBase.UpdateStatusAsync(System.Threading.CancellationToken)">
855
+ <summary>
856
+ Calls the server to get the latest status of the long-running operation, handling diagnostic scope creation for distributed
857
+ tracing. The default scope name can be changed with the "<c>operationTypeName</c>" parameter passed to the constructor.
858
+ <example>Usage example:
859
+ <code>
860
+ public async ValueTask&lt;Response&gt; UpdateStatusAsync(CancellationToken cancellationToken) =>
861
+ await _operationInternal.UpdateStatusAsync(cancellationToken).ConfigureAwait(false);
862
+ </code>
863
+ </example>
864
+ </summary>
865
+ <param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> controlling the request lifetime.</param>
866
+ <returns>The HTTP response received from the server.</returns>
867
+ <remarks>
868
+ After a successful run, this method will update <see cref="P:Azure.Core.OperationInternalBase.RawResponse"/> and might update <see cref="P:Azure.Core.OperationInternalBase.HasCompleted"/>.
869
+ </remarks>
870
+ <exception cref="T:Azure.RequestFailedException">Thrown if there's been any issues during the connection, or if the operation has completed with failures.</exception>
871
+ </member>
872
+ <member name="M:Azure.Core.OperationInternalBase.UpdateStatus(System.Threading.CancellationToken)">
873
+ <summary>
874
+ Calls the server to get the latest status of the long-running operation, handling diagnostic scope creation for distributed
875
+ tracing. The default scope name can be changed with the "<c>operationTypeName</c>" parameter passed to the constructor.
876
+ <example>Usage example:
877
+ <code>
878
+ public Response UpdateStatus(CancellationToken cancellationToken) => _operationInternal.UpdateStatus(cancellationToken);
879
+ </code>
880
+ </example>
881
+ </summary>
882
+ <param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> controlling the request lifetime.</param>
883
+ <returns>The HTTP response received from the server.</returns>
884
+ <remarks>
885
+ After a successful run, this method will update <see cref="P:Azure.Core.OperationInternalBase.RawResponse"/> and might update <see cref="P:Azure.Core.OperationInternalBase.HasCompleted"/>.
886
+ </remarks>
887
+ <exception cref="T:Azure.RequestFailedException">Thrown if there's been any issues during the connection, or if the operation has completed with failures.</exception>
888
+ </member>
889
+ <member name="M:Azure.Core.OperationInternalBase.WaitForCompletionResponseAsync(System.Threading.CancellationToken)">
890
+ <summary>
891
+ Periodically calls <see cref="M:Azure.Core.OperationInternalBase.UpdateStatusAsync(System.Threading.CancellationToken)"/> until the long-running operation completes.
892
+ After each service call, a retry-after header may be returned to communicate that there is no reason to poll
893
+ for status change until the specified time has passed. The maximum of the retry after value and the fallback strategy
894
+ is then used as the wait interval.
895
+ Headers supported are: "Retry-After", "retry-after-ms", and "x-ms-retry-after-ms",
896
+ <example>Usage example:
897
+ <code>
898
+ public async ValueTask&lt;Response&lt;T&gt;&gt; WaitForCompletionAsync(CancellationToken cancellationToken) =>
899
+ await _operationInternal.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false);
900
+ </code>
901
+ </example>
902
+ </summary>
903
+ <param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> controlling the request lifetime.</param>
904
+ <returns>The last HTTP response received from the server, including the final result of the long-running operation.</returns>
905
+ <exception cref="T:Azure.RequestFailedException">Thrown if there's been any issues during the connection, or if the operation has completed with failures.</exception>
906
+ </member>
907
+ <member name="M:Azure.Core.OperationInternalBase.WaitForCompletionResponseAsync(System.TimeSpan,System.Threading.CancellationToken)">
908
+ <summary>
909
+ Periodically calls <see cref="M:Azure.Core.OperationInternalBase.UpdateStatusAsync(System.Threading.CancellationToken)"/> until the long-running operation completes. The interval
910
+ between calls is defined by the parameter <paramref name="pollingInterval"/>, but it can change based on information returned
911
+ from the server. After each service call, a retry-after header may be returned to communicate that there is no reason to poll
912
+ for status change until the specified time has passed. In this case, the maximum value between the <paramref name="pollingInterval"/>
913
+ parameter and the retry-after header is chosen as the wait interval. Headers supported are: "Retry-After", "retry-after-ms",
914
+ and "x-ms-retry-after-ms".
915
+ <example>Usage example:
916
+ <code>
917
+ public async ValueTask&lt;Response&lt;T&gt;&gt; WaitForCompletionAsync(TimeSpan pollingInterval, CancellationToken cancellationToken) =>
918
+ await _operationInternal.WaitForCompletionAsync(pollingInterval, cancellationToken).ConfigureAwait(false);
919
+ </code>
920
+ </example>
921
+ </summary>
922
+ <param name="pollingInterval">The interval between status requests to the server. <strong></strong></param>
923
+ <param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> controlling the request lifetime.</param>
924
+ <returns>The last HTTP response received from the server, including the final result of the long-running operation.</returns>
925
+ <exception cref="T:Azure.RequestFailedException">Thrown if there's been any issues during the connection, or if the operation has completed with failures.</exception>
926
+ </member>
927
+ <member name="M:Azure.Core.OperationInternalBase.WaitForCompletionResponse(System.Threading.CancellationToken)">
928
+ <summary>
929
+ Periodically calls <see cref="M:Azure.Core.OperationInternalBase.UpdateStatus(System.Threading.CancellationToken)"/> until the long-running operation completes.
930
+ After each service call, a retry-after header may be returned to communicate that there is no reason to poll
931
+ for status change until the specified time has passed. The maximum of the retry after value and the fallback strategy
932
+ is then used as the wait interval.
933
+ Headers supported are: "Retry-After", "retry-after-ms", and "x-ms-retry-after-ms",
934
+ and "x-ms-retry-after-ms".
935
+ <example>Usage example:
936
+ <code>
937
+ public async ValueTask&lt;Response&lt;T&gt;&gt; WaitForCompletionAsync(TimeSpan pollingInterval, CancellationToken cancellationToken) =>
938
+ await _operationInternal.WaitForCompletionAsync(pollingInterval, cancellationToken).ConfigureAwait(false);
939
+ </code>
940
+ </example>
941
+ </summary>
942
+ <param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> controlling the request lifetime.</param>
943
+ <returns>The last HTTP response received from the server, including the final result of the long-running operation.</returns>
944
+ <exception cref="T:Azure.RequestFailedException">Thrown if there's been any issues during the connection, or if the operation has completed with failures.</exception>
945
+ </member>
946
+ <member name="M:Azure.Core.OperationInternalBase.WaitForCompletionResponse(System.TimeSpan,System.Threading.CancellationToken)">
947
+ <summary>
948
+ Periodically calls <see cref="M:Azure.Core.OperationInternalBase.UpdateStatus(System.Threading.CancellationToken)"/> until the long-running operation completes. The interval
949
+ between calls is defined by the parameter <paramref name="pollingInterval"/>, but it can change based on information returned
950
+ from the server. After each service call, a retry-after header may be returned to communicate that there is no reason to poll
951
+ for status change until the specified time has passed. In this case, the maximum value between the <paramref name="pollingInterval"/>
952
+ parameter and the retry-after header is chosen as the wait interval. Headers supported are: "Retry-After", "retry-after-ms",
953
+ and "x-ms-retry-after-ms".
954
+ <example>Usage example:
955
+ <code>
956
+ public async ValueTask&lt;Response&lt;T&gt;&gt; WaitForCompletionAsync(TimeSpan pollingInterval, CancellationToken cancellationToken) =>
957
+ await _operationInternal.WaitForCompletionAsync(pollingInterval, cancellationToken).ConfigureAwait(false);
958
+ </code>
959
+ </example>
960
+ </summary>
961
+ <param name="pollingInterval">The interval between status requests to the server.</param>
962
+ <param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> controlling the request lifetime.</param>
963
+ <returns>The last HTTP response received from the server, including the final result of the long-running operation.</returns>
964
+ <exception cref="T:Azure.RequestFailedException">Thrown if there's been any issues during the connection, or if the operation has completed with failures.</exception>
965
+ </member>
966
+ <member name="T:Azure.Core.AsyncLockWithValue`1">
967
+ <summary>
968
+ Primitive that combines async lock and value cache
969
+ </summary>
970
+ <typeparam name="T"></typeparam>
971
+ </member>
972
+ <member name="M:Azure.Core.AsyncLockWithValue`1.GetLockOrValueAsync(System.Boolean,System.Threading.CancellationToken)">
973
+ <summary>
974
+ Method that either returns cached value or acquire a lock.
975
+ If one caller has acquired a lock, other callers will be waiting for the lock to be released.
976
+ If value is set, lock is released and all waiters get that value.
977
+ If value isn't set, the next waiter in the queue will get the lock.
978
+ </summary>
979
+ <param name="async"></param>
980
+ <param name="cancellationToken"></param>
981
+ <returns></returns>
982
+ </member>
983
+ <member name="M:Azure.Core.AsyncLockWithValue`1.SetValue(`0,System.Int64@)">
984
+ <summary>
985
+ Set value to the cache and to all the waiters
986
+ </summary>
987
+ <param name="value"></param>
988
+ <param name="lockIndex"></param>
989
+ </member>
990
+ <member name="M:Azure.Core.AsyncLockWithValue`1.Reset(System.Int64@)">
991
+ <summary>
992
+ Release the lock and allow next waiter acquire it
993
+ </summary>
994
+ </member>
995
+ <member name="P:Azure.Core.AsyncLockWithValue`1.LockOrValue.HasValue">
996
+ <summary>
997
+ Returns true if lock contains the cached value. Otherwise false.
998
+ </summary>
999
+ </member>
1000
+ <member name="P:Azure.Core.AsyncLockWithValue`1.LockOrValue.Value">
1001
+ <summary>
1002
+ Returns cached value if it was set when lock has been created. Throws exception otherwise.
1003
+ </summary>
1004
+ <exception cref="T:System.InvalidOperationException">Value isn't set.</exception>
1005
+ </member>
1006
+ <member name="M:Azure.Core.AsyncLockWithValue`1.LockOrValue.SetValue(`0)">
1007
+ <summary>
1008
+ Set value to the cache and to all the waiters.
1009
+ </summary>
1010
+ <param name="value"></param>
1011
+ <exception cref="T:System.InvalidOperationException">Value is set already.</exception>
1012
+ </member>
1013
+ <member name="T:Azure.Core.OperationPoller">
1014
+ <summary>
1015
+ Implementation of LRO polling logic.
1016
+ </summary>
1017
+ </member>
1018
+ <member name="T:Azure.Core.FixedDelayWithNoJitterStrategy">
1019
+ <summary>
1020
+ A delay strategy that uses a fixed delay with no jitter applied. This is used by data plane LROs.
1021
+ </summary>
1022
+ </member>
1023
+ <member name="T:Azure.Core.ForwardsClientCallsAttribute">
1024
+ <summary>
1025
+ Marks methods that call methods on other client and don't need their diagnostics verified.
1026
+ </summary>
1027
+ </member>
1028
+ <member name="M:Azure.Core.ForwardsClientCallsAttribute.#ctor">
1029
+ <summary>
1030
+ Creates a new instance of <see cref="T:Azure.Core.ForwardsClientCallsAttribute"/>.
1031
+ </summary>
1032
+ </member>
1033
+ <member name="M:Azure.Core.ForwardsClientCallsAttribute.#ctor(System.Boolean)">
1034
+ <summary>
1035
+ Creates a new instance of <see cref="T:Azure.Core.ForwardsClientCallsAttribute"/>.
1036
+ </summary>
1037
+ <param name="skipChecks"> Sets whether or not diagnostic scope validation should happen. </param>
1038
+ </member>
1039
+ <member name="P:Azure.Core.ForwardsClientCallsAttribute.SkipChecks">
1040
+ <summary>
1041
+ Gets whether or not we should validate DiagnosticScope for this API.
1042
+ In the case where there is an internal API that makes the Azure API call and a public API that uses it we need ForwardsClientCalls.
1043
+ If the public API will cache the results then the diagnostic scope will not always be created because an Azure API is not always called.
1044
+ In this case we need to turn off this validation for this API only.
1045
+ </summary>
1046
+ </member>
1047
+ <member name="P:Azure.NoValueResponse`1.HasValue">
1048
+ <inheritdoc />
1049
+ </member>
1050
+ </members>
1051
+ </doc>