├── .clang-format ├── .config └── 1espt │ └── PipelineAutobaseliningConfig.yml ├── .github ├── CODEOWNERS ├── CODEOWNERS_baseline_errors.txt ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question-query-template.md ├── copilot-instructions.md ├── dependabot.yml ├── event-processor.config ├── pull_request_template.md └── workflows │ ├── copilot-setup-steps.yml │ ├── event-processor.yml │ ├── event.yml │ ├── post-apiview.yml │ └── scheduled-event-processor.yml ├── .gitignore ├── .vscode └── cspell.json ├── CMakeLists.txt ├── CMakePresets.json ├── CMakeSettings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── cmake-modules ├── AddGoogleTest.cmake ├── AzureBuildTargetForCI.cmake ├── AzureCodeCoverage.cmake ├── AzureConfigRTTI.cmake ├── AzureDoxygen.cmake ├── AzureGlobalCompileOptions.cmake ├── AzureTransportAdapters.cmake ├── AzureVcpkg.cmake ├── AzureVersion.cmake ├── CreateMapFile.cmake ├── DownloadJsonTestData.cmake ├── FolderList.cmake ├── PerfTest.cmake ├── TSPCompile.cmake └── TestProxyPrep.cmake ├── doc ├── DistributedTracing.md ├── HttpTransportAdapter.md ├── LibcurlTransportAdapter.md ├── Operation.md ├── PerformanceTesting.md ├── SnippetGeneration.md ├── StressTest.md └── TestProxy.md ├── eng ├── CredScanSuppression.json ├── common │ ├── README.md │ ├── TestResources │ │ ├── New-TestResources.cmd │ │ ├── New-TestResources.ps1 │ │ ├── New-TestResources.ps1.md │ │ ├── README.md │ │ ├── Remove-TestResources.cmd │ │ ├── Remove-TestResources.ps1 │ │ ├── Remove-TestResources.ps1.md │ │ ├── SubConfig-Helpers.ps1 │ │ ├── TestResources-Helpers.ps1 │ │ ├── Update-TestResources.cmd │ │ ├── Update-TestResources.ps1 │ │ ├── Update-TestResources.ps1.md │ │ ├── build-test-resource-config.yml │ │ ├── clouds │ │ │ ├── AzureChinaCloud.json │ │ │ ├── AzureCloud.json │ │ │ └── AzureUSGovernment.json │ │ ├── deploy-test-resources.yml │ │ ├── remove-test-resources.yml │ │ └── setup-environments.yml │ ├── docgeneration │ │ ├── Generate-DocIndex.ps1 │ │ ├── assets │ │ │ └── logo.svg │ │ ├── docfx.json │ │ └── templates │ │ │ └── matthews │ │ │ ├── partials │ │ │ ├── affix.tmpl.partial │ │ │ ├── class.header.tmpl.partial │ │ │ ├── class.tmpl.partial │ │ │ ├── enum.tmpl.partial │ │ │ ├── head.tmpl.partial │ │ │ └── namespace.tmpl.partial │ │ │ └── styles │ │ │ ├── main.css │ │ │ └── main.js │ ├── instructions │ │ ├── azsdk-tools │ │ │ ├── check-package-readiness.instructions.md │ │ │ ├── check-package-validation.instructions.md │ │ │ ├── create-release-plan.instructions.md │ │ │ ├── local-sdk-workflow.instructions.md │ │ │ ├── sdk-details-in-release-plan.instructions.md │ │ │ ├── typespec-docs.instructions.md │ │ │ ├── typespec-to-sdk.instructions.md │ │ │ ├── validate-codeowners.instructions.md │ │ │ ├── validate-service-label.instructions.md │ │ │ ├── verify-namespace-approval.instructions.md │ │ │ └── verify-setup.instructions.md │ │ └── copilot │ │ │ └── sdk-release.instructions.md │ ├── knowledge │ │ └── customizing-client-tsp.md │ ├── mcp │ │ ├── README.md │ │ └── azure-sdk-mcp.ps1 │ ├── pipelines │ │ ├── ai-evals-tests.yml │ │ ├── codeowners-linter.yml │ │ └── templates │ │ │ ├── archetype-typespec-emitter.yml │ │ │ ├── jobs │ │ │ ├── archetype-sdk-tests-generate.yml │ │ │ ├── docindex.yml │ │ │ ├── generate-job-matrix.yml │ │ │ ├── npm-publish.yml │ │ │ ├── perf.yml │ │ │ └── prepare-pipelines.yml │ │ │ ├── stages │ │ │ └── archetype-sdk-tool-pwsh.yml │ │ │ └── steps │ │ │ ├── bypass-local-dns.yml │ │ │ ├── cache-ps-modules.yml │ │ │ ├── check-spelling.yml │ │ │ ├── cosmos-emulator.yml │ │ │ ├── create-apireview.yml │ │ │ ├── create-authenticated-npmrc.yml │ │ │ ├── create-pull-request.yml │ │ │ ├── create-tags-and-git-release.yml │ │ │ ├── credscan.yml │ │ │ ├── daily-dev-build-variable.yml │ │ │ ├── detect-api-changes.yml │ │ │ ├── devops-variables-clear.yml │ │ │ ├── devops-variables-set.yml │ │ │ ├── docsms-ensure-validation.yml │ │ │ ├── emit-rate-limit-metrics.yml │ │ │ ├── enable-long-path-support.yml │ │ │ ├── eng-common-workflow-enforcer.yml │ │ │ ├── git-push-changes.yml │ │ │ ├── install-pipeline-generation.yml │ │ │ ├── mark-release-completion.yml │ │ │ ├── mashup-doc-index.yml │ │ │ ├── policheck.yml │ │ │ ├── publish-1es-artifact.yml │ │ │ ├── publish-artifact.yml │ │ │ ├── publish-blobs.yml │ │ │ ├── replace-relative-links.yml │ │ │ ├── retain-run.yml │ │ │ ├── run-pester-tests.yml │ │ │ ├── save-package-properties.yml │ │ │ ├── set-daily-docs-branch-name.yml │ │ │ ├── set-default-branch.yml │ │ │ ├── set-test-pipeline-version.yml │ │ │ ├── set-vcpkg-cache-vars.yml │ │ │ ├── sparse-checkout.yml │ │ │ ├── update-docsms-metadata.yml │ │ │ ├── validate-all-packages.yml │ │ │ ├── validate-filename.yml │ │ │ ├── verify-agent-os.yml │ │ │ ├── verify-changelog.yml │ │ │ ├── verify-changelogs.yml │ │ │ ├── verify-links.yml │ │ │ ├── verify-path-length.yml │ │ │ ├── verify-readme.yml │ │ │ ├── verify-readmes.yml │ │ │ ├── verify-restapi-spec-location.yml │ │ │ ├── verify-samples.yml │ │ │ └── write-filesystemmetrics.yml │ ├── scripts │ │ ├── Add-IssueComment.ps1 │ │ ├── Add-IssueLabels.ps1 │ │ ├── Add-RetentionLease.ps1 │ │ ├── ChangeLog-Operations.ps1 │ │ ├── Cosmos-Emulator.ps1 │ │ ├── Create-APIReview.ps1 │ │ ├── Delete-RemoteBranches.ps1 │ │ ├── Delete-RemoteTag.ps1 │ │ ├── Detect-Api-Changes.ps1 │ │ ├── Generate-PR-Diff.ps1 │ │ ├── Get-BuildSourceDescription.ps1 │ │ ├── Get-PullRequestCreator.ps1 │ │ ├── Helpers │ │ │ ├── ApiView-Helpers.ps1 │ │ │ ├── AzSdkTool-Helpers.ps1 │ │ │ ├── CommandInvocation-Helpers.ps1 │ │ │ ├── DevOps-WorkItem-Helpers.ps1 │ │ │ ├── Metadata-Helpers.ps1 │ │ │ ├── PSModule-Helpers.ps1 │ │ │ ├── Package-Helpers.ps1 │ │ │ ├── Resource-Helpers.ps1 │ │ │ ├── Service-Level-Readme-Automation-Helpers.ps1 │ │ │ ├── git-helpers.ps1 │ │ │ └── git-helpers.tests.ps1 │ │ ├── Import-AzModules.ps1 │ │ ├── Invoke-DevOpsAPI.ps1 │ │ ├── Invoke-GitHubAPI.ps1 │ │ ├── Mark-ReleasePlanCompletion.ps1 │ │ ├── New-RegenerateMatrix.ps1 │ │ ├── New-ReleaseAsset.ps1 │ │ ├── Package-Properties.ps1 │ │ ├── Prepare-Release.ps1 │ │ ├── Queue-Pipeline.ps1 │ │ ├── Remove-IssueLabel.ps1 │ │ ├── Save-Package-Properties.ps1 │ │ ├── SemVer.ps1 │ │ ├── Service-Level-Readme-Automation.ps1 │ │ ├── Set-VcpkgWriteModeCache.ps1 │ │ ├── SetTestPipelineVersion.ps1 │ │ ├── Submit-PullRequest.ps1 │ │ ├── Test-SampleMetadata.ps1 │ │ ├── TypeSpec-Project-Generate.ps1 │ │ ├── TypeSpec-Project-Process.ps1 │ │ ├── TypeSpec-Project-Sync.ps1 │ │ ├── Update-ChangeLog.ps1 │ │ ├── Update-DevOps-Release-WorkItem.ps1 │ │ ├── Update-DocsMsMetadata.ps1 │ │ ├── Update-DocsMsPackageMonikers.ps1 │ │ ├── Update-DocsMsPackages.ps1 │ │ ├── Update-DocsMsToc.ps1 │ │ ├── Update-GeneratedSdks.ps1 │ │ ├── Update-PullRequest-In-ReleasePlan.ps1 │ │ ├── Validate-All-Packages.ps1 │ │ ├── Validate-Package.ps1 │ │ ├── Verify-AgentOS.ps1 │ │ ├── Verify-ChangeLog.ps1 │ │ ├── Verify-ChangeLogs.ps1 │ │ ├── Verify-Links.ps1 │ │ ├── Verify-Readme.ps1 │ │ ├── Verify-RequiredDocsJsonMembers.ps1 │ │ ├── Verify-Resource-Ref.ps1 │ │ ├── Verify-RestApiSpecLocation.ps1 │ │ ├── Write-FileSystemMetrics.ps1 │ │ ├── X509Certificate2 │ │ │ ├── README.md │ │ │ └── X509Certificate2.psm1 │ │ ├── artifact-metadata-parsing.ps1 │ │ ├── check-for-git-changes.ps1 │ │ ├── check-spelling-in-changed-files.ps1 │ │ ├── common.ps1 │ │ ├── copy-docs-to-blobstorage.ps1 │ │ ├── create-tags-and-git-release.ps1 │ │ ├── get-changedfiles.ps1 │ │ ├── get-markdown-files-from-changed-files.ps1 │ │ ├── git-branch-push.ps1 │ │ ├── job-matrix │ │ │ ├── Create-JobMatrix.ps1 │ │ │ ├── Create-PrJobMatrix.ps1 │ │ │ ├── README.md │ │ │ ├── job-matrix-functions.ps1 │ │ │ └── pullrequest-faq.md │ │ ├── logging.ps1 │ │ ├── stress-testing │ │ │ ├── deploy-stress-tests.ps1 │ │ │ ├── find-all-stress-packages.ps1 │ │ │ ├── generate-scenario-matrix.ps1 │ │ │ └── stress-test-deployment-lib.ps1 │ │ ├── trust-proxy-certificate.ps1 │ │ └── typespec │ │ │ ├── New-EmitterPackageJson.ps1 │ │ │ └── New-EmitterPackageLock.ps1 │ ├── spelling │ │ ├── Invoke-Cspell.ps1 │ │ ├── README.md │ │ ├── package-lock.json │ │ └── package.json │ ├── testproxy │ │ ├── apply-dev-cert.sh │ │ ├── docker-start-proxy.ps1 │ │ ├── dotnet-devcert.crt │ │ ├── dotnet-devcert.pfx │ │ ├── install-test-proxy.ps1 │ │ ├── localhost.conf │ │ ├── onboarding │ │ │ ├── README.md │ │ │ ├── common-asset-functions.ps1 │ │ │ └── generate-assets-json.ps1 │ │ ├── publish-proxy-logs.yml │ │ ├── scripts │ │ │ ├── override-proxy-version.ps1 │ │ │ ├── resolve-asset-conflict │ │ │ │ ├── README.md │ │ │ │ └── resolve-asset-conflict.ps1 │ │ │ └── tag-merge │ │ │ │ ├── README.md │ │ │ │ └── merge-proxy-tags.ps1 │ │ ├── target_version.txt │ │ ├── test-proxy-standalone-tool.yml │ │ ├── test-proxy-tool-shutdown.yml │ │ └── test-proxy-tool.yml │ └── tsp-client │ │ ├── README.md │ │ ├── package-lock.json │ │ └── package.json ├── docs │ └── api │ │ └── assets │ │ ├── DoxygenLayout.xml │ │ ├── README.md │ │ ├── footer.html │ │ ├── header.html │ │ └── style.css ├── ignore-links.txt ├── pipelines │ ├── daily-verification.yml │ ├── docindex.yml │ ├── prepare-pipelines.yml │ └── templates │ │ ├── jobs │ │ ├── archetype-sdk-client.yml │ │ ├── ci.tests.yml │ │ ├── cmake-generate-jobs.yml │ │ ├── cmake-generate.tests.yml │ │ ├── live.tests.yml │ │ └── perf.yml │ │ ├── stages │ │ ├── archetype-cpp-release.yml │ │ ├── archetype-sdk-client.yml │ │ ├── archetype-sdk-tests.yml │ │ ├── platform-matrix-cmakegenerate.json │ │ ├── platform-matrix-cmakesourcegenerate.json │ │ ├── platform-matrix-live.json │ │ ├── platform-matrix-quick.json │ │ └── platform-matrix.json │ │ ├── steps │ │ ├── cmake-build.yml │ │ ├── cmake-generate.yml │ │ ├── fix-1es-image-apt-azure-sources.yml │ │ ├── generate-and-publish-sbom.yml │ │ ├── generate-daily-branch-name.yml │ │ ├── show-failure-logs.yml │ │ ├── vcpkg-clone.yml │ │ └── vcpkg-publish.yml │ │ └── variables │ │ ├── globals.yml │ │ └── image.yml └── scripts │ ├── Collect-Changelogs.ps1 │ ├── Generate-APIReview-Token-Files.ps1 │ ├── Generate-Snippets.ps1 │ ├── Generate-Unified-Header.ps1 │ ├── Get-BinarySizes.ps1 │ ├── Get-PkgVersion.ps1 │ ├── Get-TriggeringUserGitHubAlias.ps1 │ ├── Initialize-VcpkgRelease.ps1 │ ├── Install-WSL.ps1 │ ├── Language-Settings.ps1 │ ├── New-DocsMsArtifact.ps1 │ ├── Show-FailureLogs.ps1 │ ├── Start-TestProxy.ps1 │ ├── Stop-TestProxy.ps1 │ ├── Test-ShouldReleaseToVcpkg.ps1 │ ├── Update-PkgVersion.ps1 │ ├── Update-VcpkgBeta.ps1 │ ├── Update-VcpkgPort.ps1 │ └── typespec │ ├── Build-Codegen.ps1 │ ├── Generate-Code.ps1 │ └── Run-Tsp-Update.ps1 ├── samples ├── README.md ├── helpers │ ├── get-env │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── inc │ │ │ └── get_env.hpp │ │ └── src │ │ │ └── get_env.cpp │ └── service │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── inc │ │ └── azure │ │ │ └── service │ │ │ └── client.hpp │ │ └── src │ │ └── client.cpp └── integration │ ├── beta-packages-vcpkg │ └── README.md │ ├── cmake-fetch-content │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ └── src │ │ └── main.cpp │ ├── cmake-vcpkg │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CMakeUserPresets.example.json │ ├── README.md │ ├── main.cpp │ ├── vcpkg-configuration.json │ └── vcpkg.json │ └── vcpkg-all-smoke │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ └── src │ └── main.cpp ├── sdk ├── appconfiguration │ ├── CMakeLists.txt │ ├── azure-data-appconfiguration │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── cgmanifest.json │ │ ├── inc │ │ │ ├── ApiViewSettings.json │ │ │ └── azure │ │ │ │ └── data │ │ │ │ ├── appconfiguration.hpp │ │ │ │ └── appconfiguration │ │ │ │ ├── configuration_client.hpp │ │ │ │ ├── configuration_client_models.hpp │ │ │ │ ├── configuration_client_options.hpp │ │ │ │ ├── configuration_client_paged_responses.hpp │ │ │ │ ├── dll_import_export.hpp │ │ │ │ └── rtti.hpp │ │ ├── samples │ │ │ ├── CMakeLists.txt │ │ │ └── appconfig_basic_operation.cpp │ │ ├── src │ │ │ ├── configuration_client.cpp │ │ │ └── private │ │ │ │ └── package_version.hpp │ │ ├── test │ │ │ └── ut │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── configuration_test.cpp │ │ │ │ └── macro_guard.cpp │ │ ├── vcpkg.json │ │ └── vcpkg │ │ │ ├── Config.cmake.in │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ └── ci.yml ├── attestation │ ├── CMakeLists.txt │ ├── assets.json │ ├── azure-security-attestation │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── cgmanifest.json │ │ ├── cspell.json │ │ ├── inc │ │ │ ├── ApiViewSettings.json │ │ │ └── azure │ │ │ │ ├── attestation.hpp │ │ │ │ └── attestation │ │ │ │ ├── attestation_administration_client.hpp │ │ │ │ ├── attestation_client.hpp │ │ │ │ ├── attestation_client_models.hpp │ │ │ │ ├── attestation_client_options.hpp │ │ │ │ ├── dll_import_export.hpp │ │ │ │ └── rtti.hpp │ │ ├── samples │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── attestation │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── attest_openenclave_shared.cpp │ │ │ │ ├── attest_openenclave_with_draft_policy.cpp │ │ │ │ ├── attest_sgxenclave.cpp │ │ │ │ ├── attest_sgxenclave_with_runtime_binary.cpp │ │ │ │ ├── attest_sgxenclave_with_runtime_json.cpp │ │ │ │ ├── attestation_collateral.cpp │ │ │ │ └── attestation_collateral.hpp │ │ │ ├── basic-operations │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── create_admin_client.cpp │ │ │ │ ├── create_client.cpp │ │ │ │ ├── get_open-id_metadata.cpp │ │ │ │ └── get_signing_certificates.cpp │ │ │ ├── policy-certificates │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── add_policy_certificate.cpp │ │ │ │ ├── cryptohelpers.hpp │ │ │ │ └── get_policy_certificates.cpp │ │ │ └── policy │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── cryptohelpers.hpp │ │ │ │ ├── get_policy.cpp │ │ │ │ ├── reset_policy.cpp │ │ │ │ ├── reset_sealed_policy.cpp │ │ │ │ ├── set_policy.cpp │ │ │ │ └── set_sealed_policy.cpp │ │ ├── src │ │ │ ├── attestation_administration_client.cpp │ │ │ ├── attestation_client.cpp │ │ │ ├── attestation_client_options.cpp │ │ │ └── private │ │ │ │ ├── attestation_client_models_private.hpp │ │ │ │ ├── attestation_client_private.cpp │ │ │ │ ├── attestation_client_private.hpp │ │ │ │ ├── attestation_common_request.cpp │ │ │ │ ├── attestation_common_request.hpp │ │ │ │ ├── attestation_deserializers_private.cpp │ │ │ │ ├── attestation_deserializers_private.hpp │ │ │ │ ├── crypto │ │ │ │ ├── inc │ │ │ │ │ └── crypto.hpp │ │ │ │ └── openssl │ │ │ │ │ ├── openssl_helpers.hpp │ │ │ │ │ ├── opensslcert.cpp │ │ │ │ │ ├── opensslcert.hpp │ │ │ │ │ ├── opensslcrypto.cpp │ │ │ │ │ ├── opensslkeys.cpp │ │ │ │ │ └── opensslkeys.hpp │ │ │ │ ├── jsonhelpers.cpp │ │ │ │ ├── jsonhelpers_private.hpp │ │ │ │ └── package_version.hpp │ │ ├── test │ │ │ └── ut │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── attestation_collateral.cpp │ │ │ │ ├── attestation_collateral.hpp │ │ │ │ ├── attestation_metadata.cpp │ │ │ │ ├── attestation_test.cpp │ │ │ │ ├── crypto_test.cpp │ │ │ │ ├── crypto_test_collateral.cpp │ │ │ │ ├── crypto_test_collateral.hpp │ │ │ │ ├── macro_guard.cpp │ │ │ │ ├── policycertmgmt_test.cpp │ │ │ │ ├── policygetset_test.cpp │ │ │ │ ├── token_test.cpp │ │ │ │ └── tpmattestation_test.cpp │ │ ├── vcpkg.json │ │ └── vcpkg │ │ │ ├── Config.cmake.in │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── ci.yml │ ├── test-resources-pre.ps1 │ └── test-resources.json ├── core │ ├── CMakeLists.txt │ ├── azure-core-amqp │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── Test-Cleanup.ps1 │ │ ├── Test-Setup.ps1 │ │ ├── cgmanifest.json │ │ ├── cspell.json │ │ ├── inc │ │ │ ├── ApiViewSettings.json │ │ │ └── azure │ │ │ │ └── core │ │ │ │ ├── amqp.hpp │ │ │ │ └── amqp │ │ │ │ ├── dll_import_export.hpp │ │ │ │ ├── internal │ │ │ │ ├── amqp_settle_mode.hpp │ │ │ │ ├── cancellable.hpp │ │ │ │ ├── claims_based_security.hpp │ │ │ │ ├── common │ │ │ │ │ ├── async_operation_queue.hpp │ │ │ │ │ ├── completion_operation.hpp │ │ │ │ │ ├── global_state.hpp │ │ │ │ │ └── runtime_context.hpp │ │ │ │ ├── connection.hpp │ │ │ │ ├── connection_string_credential.hpp │ │ │ │ ├── doxygen_pragma.hpp │ │ │ │ ├── endpoint.hpp │ │ │ │ ├── link.hpp │ │ │ │ ├── management.hpp │ │ │ │ ├── message_receiver.hpp │ │ │ │ ├── message_sender.hpp │ │ │ │ ├── models │ │ │ │ │ ├── amqp_error.hpp │ │ │ │ │ ├── amqp_protocol.hpp │ │ │ │ │ ├── message_source.hpp │ │ │ │ │ ├── message_target.hpp │ │ │ │ │ ├── messaging_values.hpp │ │ │ │ │ └── performatives │ │ │ │ │ │ ├── amqp_detach.hpp │ │ │ │ │ │ └── amqp_transfer.hpp │ │ │ │ ├── network │ │ │ │ │ ├── amqp_header_detect_transport.hpp │ │ │ │ │ ├── sasl_transport.hpp │ │ │ │ │ ├── socket_listener.hpp │ │ │ │ │ ├── socket_transport.hpp │ │ │ │ │ ├── tls_transport.hpp │ │ │ │ │ └── transport.hpp │ │ │ │ └── session.hpp │ │ │ │ ├── models │ │ │ │ ├── amqp_header.hpp │ │ │ │ ├── amqp_message.hpp │ │ │ │ ├── amqp_properties.hpp │ │ │ │ └── amqp_value.hpp │ │ │ │ └── rtti.hpp │ │ ├── samples │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── internal │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── eventhub_async_writer_sample │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── eventhub_async_writer_sample.cpp │ │ │ │ ├── eventhub_get_properties_sample │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── eventhub_get_eventhub_properties_sample.cpp │ │ │ │ ├── eventhub_reader_sample │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── eventhub_reader_sample.cpp │ │ │ │ ├── eventhub_sas_reader_sample │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── eventhub_sas_reader_sample.cpp │ │ │ │ ├── eventhub_sas_writer_sample │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── eventhub_sas_writer_sample.cpp │ │ │ │ ├── eventhub_token_reader_sample │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── eventhub_token_reader_sample.cpp │ │ │ │ ├── eventhub_token_writer_sample │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── eventhub_token_writer_sample.cpp │ │ │ │ ├── eventhub_writer_sample │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── eventhub_writer_sample.cpp │ │ │ │ ├── local_client_async_sample │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── local_client_async_sample.cpp │ │ │ │ ├── local_client_sample │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── local_client_sample.cpp │ │ │ │ └── local_server_sample │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── local_server_sample.cpp │ │ │ └── test-resources.json │ │ ├── src │ │ │ ├── amqp │ │ │ │ ├── claim_based_security.cpp │ │ │ │ ├── connection.cpp │ │ │ │ ├── connection_string_credential.cpp │ │ │ │ ├── link.cpp │ │ │ │ ├── management.cpp │ │ │ │ ├── message_receiver.cpp │ │ │ │ ├── message_sender.cpp │ │ │ │ ├── private │ │ │ │ │ └── unique_handle.hpp │ │ │ │ └── session.cpp │ │ │ ├── common │ │ │ │ └── global_state.cpp │ │ │ ├── impl │ │ │ │ ├── rust_amqp │ │ │ │ │ ├── amqp │ │ │ │ │ │ ├── claim_based_security.cpp │ │ │ │ │ │ ├── connection.cpp │ │ │ │ │ │ ├── connection_string_credential.cpp │ │ │ │ │ │ ├── management.cpp │ │ │ │ │ │ ├── message_receiver.cpp │ │ │ │ │ │ ├── message_sender.cpp │ │ │ │ │ │ ├── private │ │ │ │ │ │ │ ├── claims_based_security_impl.hpp │ │ │ │ │ │ │ ├── connection_impl.hpp │ │ │ │ │ │ │ ├── management_impl.hpp │ │ │ │ │ │ │ ├── message_receiver_impl.hpp │ │ │ │ │ │ │ ├── message_sender_impl.hpp │ │ │ │ │ │ │ ├── session_impl.hpp │ │ │ │ │ │ │ └── unique_handle.hpp │ │ │ │ │ │ └── session.cpp │ │ │ │ │ └── rust_amqp │ │ │ │ │ │ ├── azure_core_amqp │ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── Test-Cleanup.ps1 │ │ │ │ │ │ ├── Test-Setup.ps1 │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ └── connection.rs │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── cbs.rs │ │ │ │ │ │ │ ├── connection.rs │ │ │ │ │ │ │ ├── error.rs │ │ │ │ │ │ │ ├── fe2o3 │ │ │ │ │ │ │ ├── cbs.rs │ │ │ │ │ │ │ ├── connection.rs │ │ │ │ │ │ │ ├── error.rs │ │ │ │ │ │ │ ├── management.rs │ │ │ │ │ │ │ ├── messaging │ │ │ │ │ │ │ │ ├── message_fields.rs │ │ │ │ │ │ │ │ ├── message_source.rs │ │ │ │ │ │ │ │ ├── message_target.rs │ │ │ │ │ │ │ │ ├── messaging_types.rs │ │ │ │ │ │ │ │ └── mod.rs │ │ │ │ │ │ │ ├── mod.rs │ │ │ │ │ │ │ ├── receiver.rs │ │ │ │ │ │ │ ├── sender.rs │ │ │ │ │ │ │ ├── session.rs │ │ │ │ │ │ │ └── value.rs │ │ │ │ │ │ │ ├── lib.rs │ │ │ │ │ │ │ ├── management.rs │ │ │ │ │ │ │ ├── messaging.rs │ │ │ │ │ │ │ ├── noop.rs │ │ │ │ │ │ │ ├── receiver.rs │ │ │ │ │ │ │ ├── sender.rs │ │ │ │ │ │ │ ├── session.rs │ │ │ │ │ │ │ └── value.rs │ │ │ │ │ │ └── rust_wrapper │ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ │ ├── build.rs │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── amqp │ │ │ │ │ │ ├── cbs.rs │ │ │ │ │ │ ├── connection.rs │ │ │ │ │ │ ├── management.rs │ │ │ │ │ │ ├── message_receiver.rs │ │ │ │ │ │ ├── message_sender.rs │ │ │ │ │ │ ├── mod.rs │ │ │ │ │ │ └── session.rs │ │ │ │ │ │ ├── call_context.rs │ │ │ │ │ │ ├── lib.rs │ │ │ │ │ │ ├── model │ │ │ │ │ │ ├── header.rs │ │ │ │ │ │ ├── message.rs │ │ │ │ │ │ ├── message_fields.rs │ │ │ │ │ │ ├── mod.rs │ │ │ │ │ │ ├── properties.rs │ │ │ │ │ │ ├── source.rs │ │ │ │ │ │ ├── target.rs │ │ │ │ │ │ └── value.rs │ │ │ │ │ │ ├── runtime_context.rs │ │ │ │ │ │ └── tracing.rs │ │ │ │ └── uamqp │ │ │ │ │ ├── amqp │ │ │ │ │ ├── cancellable.cpp │ │ │ │ │ ├── claim_based_security.cpp │ │ │ │ │ ├── connection.cpp │ │ │ │ │ ├── connection_string_credential.cpp │ │ │ │ │ ├── link.cpp │ │ │ │ │ ├── management.cpp │ │ │ │ │ ├── message_receiver.cpp │ │ │ │ │ ├── message_sender.cpp │ │ │ │ │ ├── private │ │ │ │ │ │ ├── claims_based_security_impl.hpp │ │ │ │ │ │ ├── connection_impl.hpp │ │ │ │ │ │ ├── link_impl.hpp │ │ │ │ │ │ ├── management_impl.hpp │ │ │ │ │ │ ├── message_receiver_impl.hpp │ │ │ │ │ │ ├── message_sender_impl.hpp │ │ │ │ │ │ └── session_impl.hpp │ │ │ │ │ └── session.cpp │ │ │ │ │ ├── network │ │ │ │ │ ├── amqp_header_transport.cpp │ │ │ │ │ ├── private │ │ │ │ │ │ └── transport_impl.hpp │ │ │ │ │ ├── sasl_transport.cpp │ │ │ │ │ ├── socket_listener.cpp │ │ │ │ │ ├── socket_transport.cpp │ │ │ │ │ ├── tls_transport.cpp │ │ │ │ │ └── transport.cpp │ │ │ │ │ └── vendor │ │ │ │ │ └── azure-uamqp-c │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .gitmodules │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── SECURITY.MD │ │ │ │ │ ├── build_all │ │ │ │ │ ├── packaging │ │ │ │ │ │ ├── linux │ │ │ │ │ │ │ └── debian │ │ │ │ │ │ │ │ ├── azure-uamqp-c-dev.dirs │ │ │ │ │ │ │ │ ├── azure-uamqp-c-dev.install │ │ │ │ │ │ │ │ ├── azure-uamqp-c-lib.dirs │ │ │ │ │ │ │ │ ├── azure-uamqp-c-lib.install │ │ │ │ │ │ │ │ ├── changelog-trusty │ │ │ │ │ │ │ │ ├── changelog-vivid │ │ │ │ │ │ │ │ ├── changelog-wily │ │ │ │ │ │ │ │ ├── changelog-xenial │ │ │ │ │ │ │ │ ├── compat │ │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ │ ├── copyright │ │ │ │ │ │ │ │ ├── docs │ │ │ │ │ │ │ │ ├── rules │ │ │ │ │ │ │ │ └── source │ │ │ │ │ │ │ │ └── format │ │ │ │ │ │ └── windows │ │ │ │ │ │ │ ├── Microsoft.Azure.uamqp.nuspec │ │ │ │ │ │ │ ├── Microsoft.Azure.uamqp.targets │ │ │ │ │ │ │ ├── Microsoft.Azure.uamqp_thirdpartynotice.txt │ │ │ │ │ │ │ └── rebuild_nugets.cmd │ │ │ │ │ └── windows │ │ │ │ │ │ └── build.cmd │ │ │ │ │ ├── configs │ │ │ │ │ └── uamqpConfig.cmake │ │ │ │ │ ├── contribute.md │ │ │ │ │ ├── dependencies-test.cmake │ │ │ │ │ ├── design │ │ │ │ │ └── AMQPLib.vsdx │ │ │ │ │ ├── devdoc │ │ │ │ │ ├── amqp_frame_codec_requirements.md │ │ │ │ │ ├── amqp_management_requirements.md │ │ │ │ │ ├── amqpvalue_requirements.md │ │ │ │ │ ├── async_operation_requirements.md │ │ │ │ │ ├── cbs_requirements.md │ │ │ │ │ ├── connection_requirements.md │ │ │ │ │ ├── frame_codec_requirements.md │ │ │ │ │ ├── header_detect_io_requirements.md │ │ │ │ │ ├── message_requirements.md │ │ │ │ │ ├── sasl_anonymous_requirements.md │ │ │ │ │ ├── sasl_frame_codec_requirements.md │ │ │ │ │ ├── sasl_mechanism_requirements.md │ │ │ │ │ ├── sasl_plain_requirements.md │ │ │ │ │ ├── sasl_server_io_requirements.md │ │ │ │ │ ├── sasl_server_mechanism_requirements.md │ │ │ │ │ ├── saslclientio_requirements.md │ │ │ │ │ └── session_requirements.md │ │ │ │ │ ├── inc │ │ │ │ │ └── azure_uamqp_c │ │ │ │ │ │ ├── amqp_definitions.h │ │ │ │ │ │ ├── amqp_definitions_accepted.h │ │ │ │ │ │ ├── amqp_definitions_address_string.h │ │ │ │ │ │ ├── amqp_definitions_amqp_error.h │ │ │ │ │ │ ├── amqp_definitions_amqp_sequence.h │ │ │ │ │ │ ├── amqp_definitions_amqp_value.h │ │ │ │ │ │ ├── amqp_definitions_annotations.h │ │ │ │ │ │ ├── amqp_definitions_application_properties.h │ │ │ │ │ │ ├── amqp_definitions_attach.h │ │ │ │ │ │ ├── amqp_definitions_begin.h │ │ │ │ │ │ ├── amqp_definitions_close.h │ │ │ │ │ │ ├── amqp_definitions_connection_error.h │ │ │ │ │ │ ├── amqp_definitions_data.h │ │ │ │ │ │ ├── amqp_definitions_delivery_annotations.h │ │ │ │ │ │ ├── amqp_definitions_delivery_number.h │ │ │ │ │ │ ├── amqp_definitions_delivery_tag.h │ │ │ │ │ │ ├── amqp_definitions_detach.h │ │ │ │ │ │ ├── amqp_definitions_disposition.h │ │ │ │ │ │ ├── amqp_definitions_end.h │ │ │ │ │ │ ├── amqp_definitions_error.h │ │ │ │ │ │ ├── amqp_definitions_fields.h │ │ │ │ │ │ ├── amqp_definitions_filter_set.h │ │ │ │ │ │ ├── amqp_definitions_flow.h │ │ │ │ │ │ ├── amqp_definitions_footer.h │ │ │ │ │ │ ├── amqp_definitions_handle.h │ │ │ │ │ │ ├── amqp_definitions_header.h │ │ │ │ │ │ ├── amqp_definitions_ietf_language_tag.h │ │ │ │ │ │ ├── amqp_definitions_link_error.h │ │ │ │ │ │ ├── amqp_definitions_message_annotations.h │ │ │ │ │ │ ├── amqp_definitions_message_format.h │ │ │ │ │ │ ├── amqp_definitions_message_id_binary.h │ │ │ │ │ │ ├── amqp_definitions_message_id_string.h │ │ │ │ │ │ ├── amqp_definitions_message_id_ulong.h │ │ │ │ │ │ ├── amqp_definitions_message_id_uuid.h │ │ │ │ │ │ ├── amqp_definitions_milliseconds.h │ │ │ │ │ │ ├── amqp_definitions_modified.h │ │ │ │ │ │ ├── amqp_definitions_node_properties.h │ │ │ │ │ │ ├── amqp_definitions_open.h │ │ │ │ │ │ ├── amqp_definitions_properties.h │ │ │ │ │ │ ├── amqp_definitions_received.h │ │ │ │ │ │ ├── amqp_definitions_receiver_settle_mode.h │ │ │ │ │ │ ├── amqp_definitions_rejected.h │ │ │ │ │ │ ├── amqp_definitions_released.h │ │ │ │ │ │ ├── amqp_definitions_role.h │ │ │ │ │ │ ├── amqp_definitions_sasl_challenge.h │ │ │ │ │ │ ├── amqp_definitions_sasl_code.h │ │ │ │ │ │ ├── amqp_definitions_sasl_init.h │ │ │ │ │ │ ├── amqp_definitions_sasl_mechanisms.h │ │ │ │ │ │ ├── amqp_definitions_sasl_outcome.h │ │ │ │ │ │ ├── amqp_definitions_sasl_response.h │ │ │ │ │ │ ├── amqp_definitions_seconds.h │ │ │ │ │ │ ├── amqp_definitions_sender_settle_mode.h │ │ │ │ │ │ ├── amqp_definitions_sequence_no.h │ │ │ │ │ │ ├── amqp_definitions_session_error.h │ │ │ │ │ │ ├── amqp_definitions_source.h │ │ │ │ │ │ ├── amqp_definitions_target.h │ │ │ │ │ │ ├── amqp_definitions_terminus_durability.h │ │ │ │ │ │ ├── amqp_definitions_terminus_expiry_policy.h │ │ │ │ │ │ ├── amqp_definitions_transfer.h │ │ │ │ │ │ ├── amqp_definitions_transfer_number.h │ │ │ │ │ │ ├── amqp_frame_codec.h │ │ │ │ │ │ ├── amqp_management.h │ │ │ │ │ │ ├── amqp_types.h │ │ │ │ │ │ ├── amqpvalue.h │ │ │ │ │ │ ├── amqpvalue_to_string.h │ │ │ │ │ │ ├── async_operation.h │ │ │ │ │ │ ├── cbs.h │ │ │ │ │ │ ├── connection.h │ │ │ │ │ │ ├── frame_codec.h │ │ │ │ │ │ ├── header_detect_io.h │ │ │ │ │ │ ├── link.h │ │ │ │ │ │ ├── message.h │ │ │ │ │ │ ├── message_receiver.h │ │ │ │ │ │ ├── message_sender.h │ │ │ │ │ │ ├── messaging.h │ │ │ │ │ │ ├── sasl_anonymous.h │ │ │ │ │ │ ├── sasl_frame_codec.h │ │ │ │ │ │ ├── sasl_mechanism.h │ │ │ │ │ │ ├── sasl_mssbcbs.h │ │ │ │ │ │ ├── sasl_plain.h │ │ │ │ │ │ ├── sasl_server_io.h │ │ │ │ │ │ ├── sasl_server_mechanism.h │ │ │ │ │ │ ├── saslclientio.h │ │ │ │ │ │ ├── server_protocol_io.h │ │ │ │ │ │ ├── session.h │ │ │ │ │ │ ├── socket_listener.h │ │ │ │ │ │ └── uamqp.h │ │ │ │ │ ├── jenkins │ │ │ │ │ ├── debian_c.sh │ │ │ │ │ ├── linux_c.sh │ │ │ │ │ ├── linux_c_option_test.sh │ │ │ │ │ ├── linux_install_deps.sh │ │ │ │ │ ├── linux_wolfssl.sh │ │ │ │ │ ├── osx_gcc_openssl.sh │ │ │ │ │ ├── osx_xcode_native.sh │ │ │ │ │ ├── raspberrypi_c.sh │ │ │ │ │ ├── raspberrypi_c_buster.sh │ │ │ │ │ ├── ubuntu_c.sh │ │ │ │ │ ├── ubuntu_clang.sh │ │ │ │ │ ├── windows_c.cmd │ │ │ │ │ ├── windows_c_VsDevCmd.cmd │ │ │ │ │ ├── windows_c_build_as_dynamic.cmd │ │ │ │ │ └── windows_vs2008_c.cmd │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── samples │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── eh_sender_with_sas_token_sample │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── main.c │ │ │ │ │ ├── local_client_sample │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── main.c │ │ │ │ │ ├── local_server_sample │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── main.c │ │ │ │ │ ├── local_server_tls_sample │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── tls_server_io.h │ │ │ │ │ │ └── tls_server_io_schannel.c │ │ │ │ │ ├── message_receiver_sample │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── main.c │ │ │ │ │ ├── message_sender_sample │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── main.c │ │ │ │ │ ├── mssbcbs_sample │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── main.c │ │ │ │ │ └── websockets_sample │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── iothub_certs.c │ │ │ │ │ │ ├── iothub_certs.h │ │ │ │ │ │ └── main.c │ │ │ │ │ ├── src │ │ │ │ │ ├── amqp_definitions.c │ │ │ │ │ ├── amqp_frame_codec.c │ │ │ │ │ ├── amqp_management.c │ │ │ │ │ ├── amqpvalue.c │ │ │ │ │ ├── amqpvalue_to_string.c │ │ │ │ │ ├── async_operation.c │ │ │ │ │ ├── cbs.c │ │ │ │ │ ├── connection.c │ │ │ │ │ ├── frame_codec.c │ │ │ │ │ ├── header_detect_io.c │ │ │ │ │ ├── link.c │ │ │ │ │ ├── message.c │ │ │ │ │ ├── message_receiver.c │ │ │ │ │ ├── message_sender.c │ │ │ │ │ ├── messaging.c │ │ │ │ │ ├── sasl_anonymous.c │ │ │ │ │ ├── sasl_frame_codec.c │ │ │ │ │ ├── sasl_mechanism.c │ │ │ │ │ ├── sasl_mssbcbs.c │ │ │ │ │ ├── sasl_plain.c │ │ │ │ │ ├── sasl_server_mechanism.c │ │ │ │ │ ├── saslclientio.c │ │ │ │ │ ├── session.c │ │ │ │ │ ├── socket_listener_berkeley.c │ │ │ │ │ └── socket_listener_win32.c │ │ │ │ │ ├── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── amqp_frame_codec_ut │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── amqp_frame_codec_ut.c │ │ │ │ │ │ └── main.c │ │ │ │ │ ├── amqp_management_ut │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── amqp_management_ut.c │ │ │ │ │ │ └── main.c │ │ │ │ │ ├── amqpvalue_ut │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── amqpvalue_ut.c │ │ │ │ │ │ └── main.c │ │ │ │ │ ├── async_operation_ut │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── async_operation_ut.c │ │ │ │ │ │ └── main.c │ │ │ │ │ ├── cbs_ut │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── cbs_ut.c │ │ │ │ │ │ └── main.c │ │ │ │ │ ├── connection_ut │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── connection_ut.c │ │ │ │ │ │ └── main.c │ │ │ │ │ ├── frame_codec_ut │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── frame_codec_ut.c │ │ │ │ │ │ └── main.c │ │ │ │ │ ├── header_detect_io_ut │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── header_detect_io_ut.c │ │ │ │ │ │ └── main.c │ │ │ │ │ ├── iothub_e2e │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── iothub_e2e.c │ │ │ │ │ │ └── main.c │ │ │ │ │ ├── local_client_server_tcp_e2e │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── local_client_server_tcp_e2e.c │ │ │ │ │ │ └── main.c │ │ │ │ │ ├── local_client_server_tcp_perf │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── local_client_server_tcp_perf.c │ │ │ │ │ ├── message_ut │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── message_ut.c │ │ │ │ │ ├── sasl_anonymous_ut │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── sasl_anonymous_ut.c │ │ │ │ │ ├── sasl_frame_codec_ut │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── sasl_frame_codec_ut.c │ │ │ │ │ ├── sasl_mechanism_ut │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── sasl_mechanism_ut.c │ │ │ │ │ ├── sasl_plain_ut │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── sasl_plain_ut.c │ │ │ │ │ ├── sasl_server_mechanism_ut │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── sasl_server_mechanism_ut.c │ │ │ │ │ ├── saslclientio_ut │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── saslclientio_ut.c │ │ │ │ │ ├── session_ut │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── session_ut.c │ │ │ │ │ └── valgrind_suppressions.supp │ │ │ │ │ ├── tools │ │ │ │ │ └── release_github.cmd │ │ │ │ │ ├── uamqp_generator │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── amqp_definitions.cs │ │ │ │ │ ├── amqp_definitions.dtd │ │ │ │ │ ├── amqp_definitions.xml │ │ │ │ │ ├── amqp_definitions.xsd │ │ │ │ │ ├── amqp_definitions_c.cs │ │ │ │ │ ├── amqp_definitions_c.tt │ │ │ │ │ ├── amqp_definitions_h.cs │ │ │ │ │ ├── amqp_definitions_h.tt │ │ │ │ │ ├── amqp_definitions_type_h.cs │ │ │ │ │ ├── amqp_definitions_type_h.tt │ │ │ │ │ ├── uamqp_generator.csproj │ │ │ │ │ └── uamqp_generator.sln │ │ │ │ │ └── version.txt │ │ │ ├── models │ │ │ │ ├── amqp_detach.cpp │ │ │ │ ├── amqp_error.cpp │ │ │ │ ├── amqp_header.cpp │ │ │ │ ├── amqp_message.cpp │ │ │ │ ├── amqp_properties.cpp │ │ │ │ ├── amqp_transfer.cpp │ │ │ │ ├── amqp_value.cpp │ │ │ │ ├── message_source.cpp │ │ │ │ ├── message_target.cpp │ │ │ │ ├── messaging_values.cpp │ │ │ │ └── private │ │ │ │ │ ├── error_impl.hpp │ │ │ │ │ ├── header_impl.hpp │ │ │ │ │ ├── message_impl.hpp │ │ │ │ │ ├── performatives │ │ │ │ │ ├── detach_impl.hpp │ │ │ │ │ └── transfer_impl.hpp │ │ │ │ │ ├── properties_impl.hpp │ │ │ │ │ ├── source_impl.hpp │ │ │ │ │ ├── target_impl.hpp │ │ │ │ │ └── value_impl.hpp │ │ │ └── private │ │ │ │ └── package_version.hpp │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── ut │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── amqp_header_tests.cpp │ │ │ │ ├── amqp_message_tests.cpp │ │ │ │ ├── amqp_performative_tests.cpp │ │ │ │ ├── amqp_properties_tests.cpp │ │ │ │ ├── amqp_value_tests.cpp │ │ │ │ ├── async_operation_queue_tests.cpp │ │ │ │ ├── azure_core_amqp_tests.cpp │ │ │ │ ├── claim_based_security_tests.cpp │ │ │ │ ├── connection_string_tests.cpp │ │ │ │ ├── connection_tests.cpp │ │ │ │ ├── link_tests.cpp │ │ │ │ ├── management_tests.cpp │ │ │ │ ├── message_sender_receiver.cpp │ │ │ │ ├── message_source_target.cpp │ │ │ │ ├── mock_amqp_server.hpp │ │ │ │ ├── session_tests.cpp │ │ │ │ └── transport_tests.cpp │ │ │ └── ut_uamqp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── uamqp_error_tests.cpp │ │ │ │ ├── uamqp_header_tests.cpp │ │ │ │ ├── uamqp_insertion_tests.cpp │ │ │ │ ├── uamqp_message_tests.cpp │ │ │ │ ├── uamqp_performatives_tests.cpp │ │ │ │ ├── uamqp_properties_tests.cpp │ │ │ │ └── uamqp_value_tests.cpp │ │ ├── vcpkg.json │ │ └── vcpkg │ │ │ ├── Config.cmake.in │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── azure-core-test │ │ ├── CMakeLists.txt │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── cgmanifest.json │ │ ├── inc │ │ │ └── azure │ │ │ │ └── core │ │ │ │ └── test │ │ │ │ ├── network_models.hpp │ │ │ │ ├── test_base.hpp │ │ │ │ ├── test_context_manager.hpp │ │ │ │ ├── test_proxy_manager.hpp │ │ │ │ └── test_proxy_policy.hpp │ │ └── src │ │ │ ├── private │ │ │ └── package_version.hpp │ │ │ ├── test_base.cpp │ │ │ ├── test_proxy_manager.cpp │ │ │ └── test_proxy_policy.cpp │ ├── azure-core-tracing-opentelemetry │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── cgmanifest.json │ │ ├── inc │ │ │ ├── ApiViewSettings.json │ │ │ └── azure │ │ │ │ └── core │ │ │ │ └── tracing │ │ │ │ └── opentelemetry │ │ │ │ ├── dll_import_export.hpp │ │ │ │ ├── internal │ │ │ │ └── apiview.hpp │ │ │ │ ├── opentelemetry.hpp │ │ │ │ └── rtti.hpp │ │ ├── src │ │ │ ├── opentelemetry.cpp │ │ │ ├── opentelemetry_private.hpp │ │ │ └── private │ │ │ │ └── package_version.hpp │ │ ├── test │ │ │ └── ut │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── azure_core_otel_test.cpp │ │ │ │ ├── azure_core_test.cpp │ │ │ │ ├── service_support_test.cpp │ │ │ │ └── test_exporter.hpp │ │ ├── vcpkg.json │ │ └── vcpkg │ │ │ ├── Config.cmake.in │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── azure-core │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── cgmanifest.json │ │ ├── inc │ │ │ ├── ApiViewSettings.json │ │ │ └── azure │ │ │ │ ├── core.hpp │ │ │ │ └── core │ │ │ │ ├── azure_assert.hpp │ │ │ │ ├── base64.hpp │ │ │ │ ├── case_insensitive_containers.hpp │ │ │ │ ├── context.hpp │ │ │ │ ├── credentials │ │ │ │ ├── credentials.hpp │ │ │ │ └── token_credential_options.hpp │ │ │ │ ├── cryptography │ │ │ │ └── hash.hpp │ │ │ │ ├── datetime.hpp │ │ │ │ ├── diagnostics │ │ │ │ └── logger.hpp │ │ │ │ ├── dll_import_export.hpp │ │ │ │ ├── etag.hpp │ │ │ │ ├── exception.hpp │ │ │ │ ├── http │ │ │ │ ├── curl_transport.hpp │ │ │ │ ├── http.hpp │ │ │ │ ├── http_status_code.hpp │ │ │ │ ├── policies │ │ │ │ │ └── policy.hpp │ │ │ │ ├── raw_response.hpp │ │ │ │ ├── transport.hpp │ │ │ │ └── win_http_transport.hpp │ │ │ │ ├── internal │ │ │ │ ├── client_options.hpp │ │ │ │ ├── contract.hpp │ │ │ │ ├── credentials │ │ │ │ │ └── authorization_challenge_parser.hpp │ │ │ │ ├── cryptography │ │ │ │ │ └── sha_hash.hpp │ │ │ │ ├── diagnostics │ │ │ │ │ ├── global_exception.hpp │ │ │ │ │ └── log.hpp │ │ │ │ ├── environment.hpp │ │ │ │ ├── extendable_enumeration.hpp │ │ │ │ ├── http │ │ │ │ │ ├── http_sanitizer.hpp │ │ │ │ │ └── pipeline.hpp │ │ │ │ ├── io │ │ │ │ │ └── null_body_stream.hpp │ │ │ │ ├── json │ │ │ │ │ ├── json.hpp │ │ │ │ │ ├── json_optional.hpp │ │ │ │ │ └── json_serializable.hpp │ │ │ │ ├── strings.hpp │ │ │ │ ├── tracing │ │ │ │ │ ├── service_tracing.hpp │ │ │ │ │ └── tracing_impl.hpp │ │ │ │ └── unique_handle.hpp │ │ │ │ ├── io │ │ │ │ └── body_stream.hpp │ │ │ │ ├── match_conditions.hpp │ │ │ │ ├── modified_conditions.hpp │ │ │ │ ├── nullable.hpp │ │ │ │ ├── operation.hpp │ │ │ │ ├── operation_status.hpp │ │ │ │ ├── paged_response.hpp │ │ │ │ ├── platform.hpp │ │ │ │ ├── resource_identifier.hpp │ │ │ │ ├── response.hpp │ │ │ │ ├── rtti.hpp │ │ │ │ ├── tracing │ │ │ │ └── tracing.hpp │ │ │ │ ├── url.hpp │ │ │ │ └── uuid.hpp │ │ ├── src │ │ │ ├── azure_assert.cpp │ │ │ ├── base64.cpp │ │ │ ├── context.cpp │ │ │ ├── credentials │ │ │ │ └── authorization_challenge_parser.cpp │ │ │ ├── cryptography │ │ │ │ ├── md5.cpp │ │ │ │ └── sha_hash.cpp │ │ │ ├── datetime.cpp │ │ │ ├── environment.cpp │ │ │ ├── environment_log_level_listener.cpp │ │ │ ├── etag.cpp │ │ │ ├── exception.cpp │ │ │ ├── http │ │ │ │ ├── bearer_token_authentication_policy.cpp │ │ │ │ ├── curl │ │ │ │ │ ├── curl.cpp │ │ │ │ │ ├── curl_connection_pool_private.hpp │ │ │ │ │ ├── curl_connection_private.hpp │ │ │ │ │ └── curl_session_private.hpp │ │ │ │ ├── http.cpp │ │ │ │ ├── http_sanitizer.cpp │ │ │ │ ├── log_policy.cpp │ │ │ │ ├── policy.cpp │ │ │ │ ├── raw_response.cpp │ │ │ │ ├── request.cpp │ │ │ │ ├── request_activity_policy.cpp │ │ │ │ ├── retry_policy.cpp │ │ │ │ ├── telemetry_policy.cpp │ │ │ │ ├── transport_policy.cpp │ │ │ │ ├── url.cpp │ │ │ │ ├── user_agent.cpp │ │ │ │ └── winhttp │ │ │ │ │ ├── private │ │ │ │ │ └── win_http_transport_impl.hpp │ │ │ │ │ ├── win_http_request.hpp │ │ │ │ │ └── win_http_transport.cpp │ │ │ ├── io │ │ │ │ ├── body_stream.cpp │ │ │ │ └── random_access_file_body_stream.cpp │ │ │ ├── logger.cpp │ │ │ ├── operation_status.cpp │ │ │ ├── private │ │ │ │ ├── environment_log_level_listener.hpp │ │ │ │ └── package_version.hpp │ │ │ ├── resource_identifier.cpp │ │ │ ├── tracing │ │ │ │ └── tracing.cpp │ │ │ └── uuid.cpp │ │ ├── test │ │ │ ├── fault-injector │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── fault_injector_test.cpp │ │ │ ├── libcurl-stress-test │ │ │ │ ├── .helmignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Chart.yaml │ │ │ │ ├── Dockerfile │ │ │ │ ├── README.md │ │ │ │ ├── deploy.ps1 │ │ │ │ ├── generatedValues.yaml │ │ │ │ ├── libcurl_stress_test.cpp │ │ │ │ ├── scenarios-matrix.yaml │ │ │ │ ├── stress-test-resources.bicep │ │ │ │ └── templates │ │ │ │ │ └── deploy-job.yaml │ │ │ ├── nlohmann-json-test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── src │ │ │ │ │ ├── make_test_data_available.hpp │ │ │ │ │ ├── unit-algorithms.cpp │ │ │ │ │ ├── unit-allocator.cpp │ │ │ │ │ ├── unit-alt-string.cpp │ │ │ │ │ ├── unit-capacity.cpp │ │ │ │ │ ├── unit-class_const_iterator.cpp │ │ │ │ │ ├── unit-class_iterator.cpp │ │ │ │ │ ├── unit-class_lexer.cpp │ │ │ │ │ ├── unit-comparison.cpp │ │ │ │ │ ├── unit-concepts.cpp │ │ │ │ │ ├── unit-constructor1.cpp │ │ │ │ │ ├── unit-constructor2.cpp │ │ │ │ │ ├── unit-conversions.cpp │ │ │ │ │ ├── unit-custom-base-class.cpp │ │ │ │ │ ├── unit-deserialization.cpp │ │ │ │ │ ├── unit-diagnostics.cpp │ │ │ │ │ ├── unit-disabled_exceptions.cpp │ │ │ │ │ ├── unit-element_access1.cpp │ │ │ │ │ ├── unit-element_access2.cpp │ │ │ │ │ ├── unit-hash.cpp │ │ │ │ │ ├── unit-items.cpp │ │ │ │ │ ├── unit-iterators1.cpp │ │ │ │ │ ├── unit-iterators2.cpp │ │ │ │ │ ├── unit-large_json.cpp │ │ │ │ │ ├── unit-modifiers.cpp │ │ │ │ │ ├── unit-no-mem-leak-on-adl-serialize.cpp │ │ │ │ │ ├── unit-noexcept.cpp │ │ │ │ │ ├── unit-ordered_json.cpp │ │ │ │ │ ├── unit-ordered_map.cpp │ │ │ │ │ ├── unit-pointer_access.cpp │ │ │ │ │ ├── unit-readme.cpp │ │ │ │ │ ├── unit-reference_access.cpp │ │ │ │ │ ├── unit-serialization.cpp │ │ │ │ │ ├── unit-testsuites.cpp │ │ │ │ │ ├── unit-to_chars.cpp │ │ │ │ │ ├── unit-type_traits.cpp │ │ │ │ │ ├── unit-udl.cpp │ │ │ │ │ ├── unit-udt.cpp │ │ │ │ │ ├── unit-user_defined_input.cpp │ │ │ │ │ ├── unit-windows_h.cpp │ │ │ │ │ ├── unit-wstring.cpp │ │ │ │ │ └── unit.cpp │ │ │ │ └── thirdparty │ │ │ │ │ └── doctest │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── doctest.h │ │ │ │ │ └── doctest_compatibility.h │ │ │ ├── perf │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── inc │ │ │ │ │ └── azure │ │ │ │ │ │ └── core │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── delay_test.hpp │ │ │ │ │ │ ├── exception_test.hpp │ │ │ │ │ │ ├── extended_options_test.hpp │ │ │ │ │ │ ├── http_transport_test.hpp │ │ │ │ │ │ ├── json_test.hpp │ │ │ │ │ │ ├── no_op_test.hpp │ │ │ │ │ │ ├── nullable_test.hpp │ │ │ │ │ │ ├── pipeline_test.hpp │ │ │ │ │ │ └── uuid_test.hpp │ │ │ │ └── src │ │ │ │ │ └── azure_core_perf_test.cpp │ │ │ └── ut │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Start-WebSocketServer.ps1 │ │ │ │ ├── assert_test.cpp │ │ │ │ ├── authorization_challenge_parser_test.cpp │ │ │ │ ├── azure_core_test.cpp │ │ │ │ ├── azure_libcurl_core_main_test.cpp │ │ │ │ ├── base64_test.cpp │ │ │ │ ├── bearer_token_authentication_policy_test.cpp │ │ │ │ ├── bodystream_test.cpp │ │ │ │ ├── case_insensitive_containers_test.cpp │ │ │ │ ├── client_options_test.cpp │ │ │ │ ├── context_test.cpp │ │ │ │ ├── curl_connection_pool_test.cpp │ │ │ │ ├── curl_options_test.cpp │ │ │ │ ├── curl_session_test.hpp │ │ │ │ ├── curl_session_test_test.cpp │ │ │ │ ├── datetime_test.cpp │ │ │ │ ├── environment_log_level_listener_test.cpp │ │ │ │ ├── etag_test.cpp │ │ │ │ ├── exception_test.cpp │ │ │ │ ├── extendable_enumeration_test.cpp │ │ │ │ ├── global_context_test.cpp │ │ │ │ ├── http_method_test.cpp │ │ │ │ ├── http_test.cpp │ │ │ │ ├── http_test.hpp │ │ │ │ ├── json_test.cpp │ │ │ │ ├── log_policy_test.cpp │ │ │ │ ├── logging_test.cpp │ │ │ │ ├── macro_guard_test.cpp │ │ │ │ ├── match_conditions_test.cpp │ │ │ │ ├── md5_test.cpp │ │ │ │ ├── modified_conditions_test.cpp │ │ │ │ ├── nullable_test.cpp │ │ │ │ ├── operation_status_test.cpp │ │ │ │ ├── operation_test.cpp │ │ │ │ ├── operation_test.hpp │ │ │ │ ├── pipeline_test.cpp │ │ │ │ ├── policy_test.cpp │ │ │ │ ├── proxy_tests │ │ │ │ ├── builddocker.ps1 │ │ │ │ ├── localproxy.passwd │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── proxypasswd │ │ │ │ │ └── squid.conf │ │ │ │ ├── localproxy │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── squid.conf │ │ │ │ ├── readme.md │ │ │ │ ├── remoteproxy.passwd │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── proxypasswd │ │ │ │ │ └── squid.conf │ │ │ │ ├── remoteproxy │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── squid.conf │ │ │ │ ├── run_wsl_proxy.ps1 │ │ │ │ ├── runproxy.ps1 │ │ │ │ └── verify_proxy.ps1 │ │ │ │ ├── request_activity_policy_test.cpp │ │ │ │ ├── request_id_policy_test.cpp │ │ │ │ ├── requirements.txt │ │ │ │ ├── resource_identifier_test.cpp │ │ │ │ ├── response_t_test.cpp │ │ │ │ ├── retry_policy_test.cpp │ │ │ │ ├── service_tracing_test.cpp │ │ │ │ ├── sha_test.cpp │ │ │ │ ├── simplified_header_test.cpp │ │ │ │ ├── string_test.cpp │ │ │ │ ├── telemetry_policy_test.cpp │ │ │ │ ├── test_traits.hpp │ │ │ │ ├── transport_adapter_base_test.cpp │ │ │ │ ├── transport_adapter_base_test.hpp │ │ │ │ ├── transport_adapter_implementation_test.cpp │ │ │ │ ├── transport_policy_options.cpp │ │ │ │ ├── url_test.cpp │ │ │ │ └── uuid_test.cpp │ │ ├── vcpkg.json │ │ └── vcpkg │ │ │ ├── Config.cmake.in │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── ci.yml │ ├── perf-tests.yml │ ├── perf.yml │ └── perf │ │ ├── CMakeLists.txt │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── cgmanifest.json │ │ ├── inc │ │ └── azure │ │ │ ├── perf.hpp │ │ │ └── perf │ │ │ ├── argagg.hpp │ │ │ ├── base_test.hpp │ │ │ ├── dynamic_test_options.hpp │ │ │ ├── options.hpp │ │ │ ├── program.hpp │ │ │ ├── random_stream.hpp │ │ │ ├── test.hpp │ │ │ ├── test_metadata.hpp │ │ │ └── test_options.hpp │ │ ├── src │ │ ├── arg_parser.cpp │ │ ├── base_test.cpp │ │ ├── options.cpp │ │ ├── program.cpp │ │ └── random_stream.cpp │ │ └── test │ │ ├── CMakeLists.txt │ │ └── src │ │ └── random_stream_test.cpp ├── eventhubs │ ├── CMakeLists.txt │ ├── assets.json │ ├── azure-messaging-eventhubs-checkpointstore-blob │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cgmanifest.json │ │ ├── inc │ │ │ ├── ApiViewSettings.json │ │ │ └── azure │ │ │ │ └── messaging │ │ │ │ └── eventhubs │ │ │ │ └── checkpointstore_blob │ │ │ │ ├── blob_checkpoint_store.hpp │ │ │ │ ├── dll_import_export.hpp │ │ │ │ └── rtti.hpp │ │ ├── src │ │ │ ├── blob_checkpoint_store.cpp │ │ │ └── private │ │ │ │ └── package_version.hpp │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ └── ut │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blob_checkpoint_store_test.cpp │ │ │ │ └── eventhubs_test_base.hpp │ │ ├── vcpkg.json │ │ └── vcpkg │ │ │ ├── Config.cmake.in │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── azure-messaging-eventhubs │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cgmanifest.json │ │ ├── inc │ │ │ ├── ApiViewSettings.json │ │ │ └── azure │ │ │ │ └── messaging │ │ │ │ ├── eventhubs.hpp │ │ │ │ └── eventhubs │ │ │ │ ├── checkpoint_store.hpp │ │ │ │ ├── consumer_client.hpp │ │ │ │ ├── dll_import_export.hpp │ │ │ │ ├── event_data_batch.hpp │ │ │ │ ├── eventhubs_exception.hpp │ │ │ │ ├── models │ │ │ │ ├── checkpoint_store_models.hpp │ │ │ │ ├── consumer_client_models.hpp │ │ │ │ ├── event_data.hpp │ │ │ │ ├── management_models.hpp │ │ │ │ ├── partition_client_models.hpp │ │ │ │ ├── processor_load_balancer_models.hpp │ │ │ │ └── processor_models.hpp │ │ │ │ ├── partition_client.hpp │ │ │ │ ├── processor.hpp │ │ │ │ ├── processor_partition_client.hpp │ │ │ │ ├── producer_client.hpp │ │ │ │ └── rtti.hpp │ │ ├── samples │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── basic-operations │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── create_consumer_aad.cpp │ │ │ │ └── create_producer_aad.cpp │ │ │ ├── consume-events │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── consume_events_aad.cpp │ │ │ └── produce-events │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── produce_events_aad.cpp │ │ ├── src │ │ │ ├── checkpoint_store.cpp │ │ │ ├── consumer_client.cpp │ │ │ ├── event_data.cpp │ │ │ ├── event_data_batch.cpp │ │ │ ├── eventhubs_utilities.cpp │ │ │ ├── partition_client.cpp │ │ │ ├── partition_client_models.cpp │ │ │ ├── private │ │ │ │ ├── eventhubs_constants.hpp │ │ │ │ ├── eventhubs_utilities.hpp │ │ │ │ ├── package_version.hpp │ │ │ │ ├── processor_load_balancer.hpp │ │ │ │ └── retry_operation.hpp │ │ │ ├── processor.cpp │ │ │ ├── processor_load_balancer.cpp │ │ │ ├── processor_partition_client.cpp │ │ │ ├── producer_client.cpp │ │ │ └── retry_operation.cpp │ │ ├── test-resources-post.ps1 │ │ ├── test-resources.json │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── eventhubs-stress-test │ │ │ │ ├── .dockerignore │ │ │ │ ├── .helmignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Chart.yaml │ │ │ │ ├── Dockerfile │ │ │ │ ├── README.md │ │ │ │ ├── deploy.ps1 │ │ │ │ ├── scenarios-matrix.yaml │ │ │ │ ├── src │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── eventhubs_stress_test.cpp │ │ │ │ │ ├── inc │ │ │ │ │ │ ├── argagg.hpp │ │ │ │ │ │ └── eventhubs_stress_scenarios.hpp │ │ │ │ │ └── scenarios │ │ │ │ │ │ ├── inc │ │ │ │ │ │ ├── batch_stress_tests.hpp │ │ │ │ │ │ ├── scope_guard.hpp │ │ │ │ │ │ └── shared_functions.hpp │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── batch_stress_tests.cpp │ │ │ │ │ │ └── shared_functions.cpp │ │ │ │ ├── stress-test-resources.bicep │ │ │ │ └── templates │ │ │ │ │ └── deploy-job.yaml │ │ │ ├── perf │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── inc │ │ │ │ │ └── azure │ │ │ │ │ │ └── messaging │ │ │ │ │ │ └── eventhubs │ │ │ │ │ │ └── test │ │ │ │ │ │ └── eventhubs_batch_perf_test.hpp │ │ │ │ └── src │ │ │ │ │ └── azure_eventhubs_perf_test.cpp │ │ │ └── ut │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── azure_messaging_eventhubs_test.cpp │ │ │ │ ├── checkpoint_store_test.cpp │ │ │ │ ├── consumer_client_test.cpp │ │ │ │ ├── event_data_test.cpp │ │ │ │ ├── eventhubs_admin_client.cpp │ │ │ │ ├── eventhubs_admin_client.hpp │ │ │ │ ├── eventhubs_admin_client_test.cpp │ │ │ │ ├── eventhubs_test_base.hpp │ │ │ │ ├── processor_load_balancer_test.cpp │ │ │ │ ├── processor_test.cpp │ │ │ │ ├── producer_client_test.cpp │ │ │ │ ├── retry_operation_test.cpp │ │ │ │ ├── round_trip_test.cpp │ │ │ │ └── test_checkpoint_store.hpp │ │ ├── vcpkg.json │ │ └── vcpkg │ │ │ ├── Config.cmake.in │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ └── ci.yml ├── identity │ ├── CMakeLists.txt │ ├── assets.json │ ├── azure-identity │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── TROUBLESHOOTING.md │ │ ├── cgmanifest.json │ │ ├── inc │ │ │ ├── ApiViewSettings.json │ │ │ └── azure │ │ │ │ ├── identity.hpp │ │ │ │ └── identity │ │ │ │ ├── azure_cli_credential.hpp │ │ │ │ ├── azure_pipelines_credential.hpp │ │ │ │ ├── chained_token_credential.hpp │ │ │ │ ├── client_assertion_credential.hpp │ │ │ │ ├── client_certificate_credential.hpp │ │ │ │ ├── client_secret_credential.hpp │ │ │ │ ├── default_azure_credential.hpp │ │ │ │ ├── detail │ │ │ │ ├── client_credential_core.hpp │ │ │ │ └── token_cache.hpp │ │ │ │ ├── dll_import_export.hpp │ │ │ │ ├── environment_credential.hpp │ │ │ │ ├── managed_identity_credential.hpp │ │ │ │ ├── rtti.hpp │ │ │ │ └── workload_identity_credential.hpp │ │ ├── perf-resources.json │ │ ├── perf-tests.yml │ │ ├── perf.yml │ │ ├── samples │ │ │ ├── CMakeLists.txt │ │ │ ├── azure_cli_credential.cpp │ │ │ ├── chained_token_credential.cpp │ │ │ ├── client_certificate_credential.cpp │ │ │ ├── client_secret_credential.cpp │ │ │ ├── default_azure_credential.cpp │ │ │ ├── environment_credential.cpp │ │ │ ├── managed_identity_credential.cpp │ │ │ └── workload_identity_credential.cpp │ │ ├── src │ │ │ ├── azure_cli_credential.cpp │ │ │ ├── azure_pipelines_credential.cpp │ │ │ ├── chained_token_credential.cpp │ │ │ ├── client_assertion_credential.cpp │ │ │ ├── client_certificate_credential.cpp │ │ │ ├── client_credential_core.cpp │ │ │ ├── client_secret_credential.cpp │ │ │ ├── default_azure_credential.cpp │ │ │ ├── environment_credential.cpp │ │ │ ├── managed_identity_credential.cpp │ │ │ ├── managed_identity_source.cpp │ │ │ ├── private │ │ │ │ ├── chained_token_credential_impl.hpp │ │ │ │ ├── client_assertion_credential_impl.hpp │ │ │ │ ├── identity_log.hpp │ │ │ │ ├── managed_identity_source.hpp │ │ │ │ ├── package_version.hpp │ │ │ │ ├── tenant_id_resolver.hpp │ │ │ │ └── token_credential_impl.hpp │ │ │ ├── tenant_id_resolver.cpp │ │ │ ├── token_cache.cpp │ │ │ ├── token_credential_impl.cpp │ │ │ └── workload_identity_credential.cpp │ │ ├── test │ │ │ ├── e2e │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── azure_identity_e2e_test.cpp │ │ │ ├── perf │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── inc │ │ │ │ │ └── azure │ │ │ │ │ │ └── identity │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── client_certificate_credential_test.hpp │ │ │ │ │ │ ├── environment_credential_test.hpp │ │ │ │ │ │ ├── externals │ │ │ │ │ │ └── perf.combo.pem │ │ │ │ │ │ └── secret_credential_test.hpp │ │ │ │ └── src │ │ │ │ │ └── azure_identity_perf_test.cpp │ │ │ └── ut │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── azure_cli_credential_test.cpp │ │ │ │ ├── azure_pipelines_credential_test.cpp │ │ │ │ ├── chained_token_credential_test.cpp │ │ │ │ ├── client_assertion_credential_test.cpp │ │ │ │ ├── client_certificate_credential_test.cpp │ │ │ │ ├── client_secret_credential_test.cpp │ │ │ │ ├── credential_test_helper.cpp │ │ │ │ ├── credential_test_helper.hpp │ │ │ │ ├── default_azure_credential_test.cpp │ │ │ │ ├── environment_credential_test.cpp │ │ │ │ ├── macro_guard_test.cpp │ │ │ │ ├── managed_identity_credential_test.cpp │ │ │ │ ├── simplified_header_test.cpp │ │ │ │ ├── tenant_id_resolver_test.cpp │ │ │ │ ├── token_cache_test.cpp │ │ │ │ ├── token_credential_impl_test.cpp │ │ │ │ ├── token_credential_test.cpp │ │ │ │ └── workload_identity_credential_test.cpp │ │ ├── vcpkg.json │ │ └── vcpkg │ │ │ ├── Config.cmake.in │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── ci.yml │ ├── test-resources-pre.ps1 │ └── test-resources.json ├── keyvault │ ├── CMakeLists.txt │ ├── README.md │ ├── TROUBLESHOOTING.md │ ├── assets.json │ ├── azure-security-keyvault-administration │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── TROUBLESHOOTING.md │ │ ├── cgmanifest.json │ │ ├── inc │ │ │ ├── ApiViewSettings.json │ │ │ └── azure │ │ │ │ └── keyvault │ │ │ │ ├── administration.hpp │ │ │ │ └── administration │ │ │ │ ├── backup_client.hpp │ │ │ │ ├── backup_operation.hpp │ │ │ │ ├── dll_import_export.hpp │ │ │ │ ├── rest_client_models.hpp │ │ │ │ ├── rtti.hpp │ │ │ │ ├── settings_client.hpp │ │ │ │ └── settings_client_options.hpp │ │ ├── samples │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── sample1-basic-operations │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── sample1_administration.cpp │ │ │ ├── sample1_administration.md │ │ │ ├── sample2-full-backup-restore │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── sample2_full_backup_restore.cpp │ │ │ ├── sample2_full_backup_restore.md │ │ │ ├── sample3-backup-selective-restore │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── sample3_backup_selective_restore.cpp │ │ │ └── sample3_backup_selective_restore.md │ │ ├── src │ │ │ ├── backup_client.cpp │ │ │ ├── backup_operation.cpp │ │ │ ├── keyvault_settings_common_request.cpp │ │ │ ├── private │ │ │ │ ├── administration_constants.hpp │ │ │ │ ├── keyvault_settings_common_request.hpp │ │ │ │ └── package_version.hpp │ │ │ └── settings_client.cpp │ │ ├── test │ │ │ └── ut │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── backup_restore_client_base_test.hpp │ │ │ │ ├── backup_restore_client_test.cpp │ │ │ │ ├── macro_guard.cpp │ │ │ │ ├── settings_client_base_test.hpp │ │ │ │ └── settings_client_test.cpp │ │ ├── vcpkg.json │ │ └── vcpkg │ │ │ ├── Config.cmake.in │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── azure-security-keyvault-certificates │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── TROUBLESHOOTING.md │ │ ├── cgmanifest.json │ │ ├── inc │ │ │ ├── ApiViewSettings.json │ │ │ └── azure │ │ │ │ └── keyvault │ │ │ │ ├── certificates.hpp │ │ │ │ └── certificates │ │ │ │ ├── certificate_client.hpp │ │ │ │ ├── certificate_client_models.hpp │ │ │ │ ├── certificate_client_operations.hpp │ │ │ │ ├── certificate_client_options.hpp │ │ │ │ ├── dll_import_export.hpp │ │ │ │ └── rtti.hpp │ │ ├── perf-resources.json │ │ ├── perf-tests.yml │ │ ├── perf.yml │ │ ├── samples │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── certificate-basic-operations │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── certificate_basic_operations.cpp │ │ │ ├── certificate-get-certificates │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── certificate_get_certificates.cpp │ │ │ ├── certificate-import-certificate │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── certificate_import_certificate.cpp │ │ │ ├── certificate_basic_operations.md │ │ │ ├── certificate_get_certificates.md │ │ │ └── certificate_import_certificate.md │ │ ├── src │ │ │ ├── certificate_client.cpp │ │ │ ├── certificate_client_models.cpp │ │ │ ├── certificate_client_operations.cpp │ │ │ ├── certificate_client_paged_response.cpp │ │ │ ├── generated │ │ │ │ ├── certificates.cpp │ │ │ │ ├── certificates_models.hpp │ │ │ │ ├── get_certificate_issuers_paged_response.cpp │ │ │ │ ├── get_certificate_versions_paged_response.cpp │ │ │ │ ├── get_certificates_paged_response.cpp │ │ │ │ ├── get_deleted_certificates_paged_response.cpp │ │ │ │ ├── key_vault_client.cpp │ │ │ │ ├── key_vault_client.hpp │ │ │ │ ├── key_vault_client_options.hpp │ │ │ │ └── key_vault_client_paged_responses.hpp │ │ │ └── private │ │ │ │ ├── certificate_constants.hpp │ │ │ │ ├── certificate_serializers.hpp │ │ │ │ └── package_version.hpp │ │ ├── test │ │ │ ├── perf │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── inc │ │ │ │ │ └── azure │ │ │ │ │ │ └── keyvault │ │ │ │ │ │ └── certificates │ │ │ │ │ │ └── test │ │ │ │ │ │ └── get_certificate_test.hpp │ │ │ │ └── src │ │ │ │ │ └── azure_security_keyvault_certificates_perf_test.cpp │ │ │ └── ut │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── certificate_client_base_test.hpp │ │ │ │ ├── certificate_client_test.cpp │ │ │ │ └── macro_guard.cpp │ │ ├── tsp-location.yaml │ │ ├── tspconfig.yaml │ │ ├── vcpkg.json │ │ └── vcpkg │ │ │ ├── Config.cmake.in │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── azure-security-keyvault-keys │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── TROUBLESHOOTING.md │ │ ├── cgmanifest.json │ │ ├── inc │ │ │ ├── ApiViewSettings.json │ │ │ └── azure │ │ │ │ └── keyvault │ │ │ │ ├── keys.hpp │ │ │ │ ├── keys │ │ │ │ ├── cryptography │ │ │ │ │ ├── cryptography_client.hpp │ │ │ │ │ ├── cryptography_client_models.hpp │ │ │ │ │ └── cryptography_client_options.hpp │ │ │ │ ├── dll_import_export.hpp │ │ │ │ ├── key_client.hpp │ │ │ │ ├── key_client_models.hpp │ │ │ │ ├── key_client_options.hpp │ │ │ │ └── rtti.hpp │ │ │ │ └── keyvault_keys.hpp │ │ ├── perf-resources.json │ │ ├── perf-tests.yml │ │ ├── perf.yml │ │ ├── samples │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── sample1-hello-world │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── sample1_hello_world.cpp │ │ │ ├── sample1_hello_world.md │ │ │ ├── sample2-backup-and-restore │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── sample2_backup_and_restore.cpp │ │ │ ├── sample2_backup_and_restore.md │ │ │ ├── sample3-get-keys │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── sample3_get_keys.cpp │ │ │ ├── sample3_get_keys.md │ │ │ ├── sample4-encrypt-decrypt │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── sample4_encrypt_decrypt.cpp │ │ │ ├── sample4_encrypt_decrypt.md │ │ │ ├── sample5-sign-verify │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── sample5_sign_verify.cpp │ │ │ ├── sample5_sign_verify.md │ │ │ ├── sample6-wrap-unwrap │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── sample6_wrap_unwrap.cpp │ │ │ ├── sample6_wrap_unwrap.md │ │ │ ├── sample7-key-rotation │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── sample7_key_rotation.cpp │ │ │ └── sample7_key_rotation.md │ │ ├── src │ │ │ ├── cryptography │ │ │ │ ├── cryptography_client.cpp │ │ │ │ ├── decrypt_parameters.cpp │ │ │ │ ├── decrypt_result.cpp │ │ │ │ ├── encrypt_parameters.cpp │ │ │ │ ├── encrypt_result.cpp │ │ │ │ ├── encryption_algorithm.cpp │ │ │ │ ├── key_sign_parameters.cpp │ │ │ │ ├── key_verify_parameters.cpp │ │ │ │ ├── key_wrap_algorithm.cpp │ │ │ │ ├── key_wrap_parameters.cpp │ │ │ │ ├── sign_result.cpp │ │ │ │ ├── signature_algorithm.cpp │ │ │ │ ├── unwrap_result.cpp │ │ │ │ ├── verify_result.cpp │ │ │ │ └── wrap_result.cpp │ │ │ ├── delete_key_operation.cpp │ │ │ ├── generated │ │ │ │ ├── get_deleted_keys_paged_response.cpp │ │ │ │ ├── get_key_versions_paged_response.cpp │ │ │ │ ├── get_keys_paged_response.cpp │ │ │ │ ├── key_vault_client.cpp │ │ │ │ ├── key_vault_client.hpp │ │ │ │ ├── key_vault_client_options.hpp │ │ │ │ ├── key_vault_client_paged_responses.hpp │ │ │ │ ├── keys.cpp │ │ │ │ └── keys_models.hpp │ │ │ ├── key_client.cpp │ │ │ ├── key_client_models.cpp │ │ │ ├── key_client_options.cpp │ │ │ ├── key_client_paged_responses.cpp │ │ │ ├── key_curve_name.cpp │ │ │ ├── key_encryption_algorithm.cpp │ │ │ ├── key_operation.cpp │ │ │ ├── key_type.cpp │ │ │ ├── keyvault_protocol.cpp │ │ │ ├── private │ │ │ │ ├── cryptography_internal_access.hpp │ │ │ │ ├── cryptography_serializers.hpp │ │ │ │ ├── key_constants.hpp │ │ │ │ ├── key_serializers.hpp │ │ │ │ ├── key_sign_parameters.hpp │ │ │ │ ├── key_verify_parameters.hpp │ │ │ │ ├── key_wrap_parameters.hpp │ │ │ │ ├── keyvault_constants.hpp │ │ │ │ ├── keyvault_protocol.hpp │ │ │ │ └── package_version.hpp │ │ │ └── recover_deleted_key_operation.cpp │ │ ├── test │ │ │ ├── macros-build │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── macros_build.cpp │ │ │ │ └── macros_build.hpp │ │ │ ├── perf │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── inc │ │ │ │ │ └── azure │ │ │ │ │ │ └── keyvault │ │ │ │ │ │ └── keys │ │ │ │ │ │ └── test │ │ │ │ │ │ └── get_key_test.hpp │ │ │ │ └── src │ │ │ │ │ └── azure_security_keyvault_keys_perf_test.cpp │ │ │ ├── ut-hsm │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── key_client_test_hsm_live.cpp │ │ │ │ └── key_client_test_hsm_live.hpp │ │ │ └── ut │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── key_client_backup_test_live.cpp │ │ │ │ ├── key_client_base_test.hpp │ │ │ │ ├── key_client_create_test_live.cpp │ │ │ │ ├── key_client_delete_test_live.cpp │ │ │ │ ├── key_client_get_test_live.cpp │ │ │ │ ├── key_client_import_test_live.cpp │ │ │ │ ├── key_client_test.cpp │ │ │ │ ├── key_client_update_test_live.cpp │ │ │ │ ├── key_cryptographic_client_test_live.cpp │ │ │ │ ├── key_rotation_policy_test_live.cpp │ │ │ │ └── macro_guard.cpp │ │ ├── tsp-location.yaml │ │ ├── tspconfig.yaml │ │ ├── vcpkg.json │ │ └── vcpkg │ │ │ ├── Config.cmake.in │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── azure-security-keyvault-secrets │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── TROUBLESHOOTING.md │ │ ├── cgmanifest.json │ │ ├── inc │ │ │ ├── ApiViewSettings.json │ │ │ └── azure │ │ │ │ └── keyvault │ │ │ │ ├── secrets.hpp │ │ │ │ └── secrets │ │ │ │ ├── dll_import_export.hpp │ │ │ │ ├── keyvault_backup_secret.hpp │ │ │ │ ├── keyvault_deleted_secret.hpp │ │ │ │ ├── keyvault_operations.hpp │ │ │ │ ├── keyvault_options.hpp │ │ │ │ ├── keyvault_secret.hpp │ │ │ │ ├── keyvault_secret_paged_response.hpp │ │ │ │ ├── keyvault_secret_properties.hpp │ │ │ │ ├── rtti.hpp │ │ │ │ └── secret_client.hpp │ │ ├── perf-resources.json │ │ ├── perf-tests.yml │ │ ├── perf.yml │ │ ├── samples │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── sample1-basic-operations │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── sample1_basic_operations.cpp │ │ │ ├── sample1_basic_operations.md │ │ │ ├── sample2-backup-restore │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── sample2_backup_restore.cpp │ │ │ ├── sample2_backup_restore.md │ │ │ ├── sample3-delete-recover │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── sample3_delete_recover.cpp │ │ │ ├── sample3_delete_recover.md │ │ │ ├── sample4-get-secrets-deleted │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── sample4_get_secrets_deleted.cpp │ │ │ └── sample4_get_secrets_deleted.md │ │ ├── src │ │ │ ├── generated │ │ │ │ ├── get_deleted_secrets_paged_response.cpp │ │ │ │ ├── get_secret_versions_paged_response.cpp │ │ │ │ ├── get_secrets_paged_response.cpp │ │ │ │ ├── key_vault_client.cpp │ │ │ │ ├── key_vault_client.hpp │ │ │ │ ├── key_vault_client_options.hpp │ │ │ │ ├── key_vault_client_paged_responses.hpp │ │ │ │ ├── secrets.cpp │ │ │ │ └── secrets_models.hpp │ │ │ ├── keyvault_deleted_secret.cpp │ │ │ ├── keyvault_operations.cpp │ │ │ ├── keyvault_protocol.cpp │ │ │ ├── keyvault_secret.cpp │ │ │ ├── keyvault_secret_paged_response.cpp │ │ │ ├── keyvault_secret_properties.cpp │ │ │ ├── private │ │ │ │ ├── keyvault_protocol.hpp │ │ │ │ ├── package_version.hpp │ │ │ │ ├── secret_constants.hpp │ │ │ │ └── secret_serializers.hpp │ │ │ └── secret_client.cpp │ │ ├── test │ │ │ ├── perf │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── inc │ │ │ │ │ └── azure │ │ │ │ │ │ └── keyvault │ │ │ │ │ │ └── secrets │ │ │ │ │ │ └── test │ │ │ │ │ │ └── get_secret_test.hpp │ │ │ │ └── src │ │ │ │ │ └── azure_security_keyvault_secrets_perf_test.cpp │ │ │ ├── test-app │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── macro_guard.cpp │ │ │ │ └── test_app.cpp │ │ │ └── ut │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── challenge_based_authentication_policy_test.cpp │ │ │ │ ├── macro_guard.cpp │ │ │ │ ├── secret_client_base_test.hpp │ │ │ │ └── secret_client_test.cpp │ │ ├── tsp-location.yaml │ │ ├── tspconfig.yaml │ │ ├── vcpkg.json │ │ └── vcpkg │ │ │ ├── Config.cmake.in │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── azure-security-keyvault-shared │ │ └── inc │ │ │ └── azure │ │ │ └── keyvault │ │ │ └── shared │ │ │ ├── keyvault_challenge_based_auth.hpp │ │ │ ├── keyvault_challenge_based_authentication_policy.hpp │ │ │ └── keyvault_shared.hpp │ ├── ci.yml │ ├── test-resources-post.ps1 │ ├── test-resources.json │ └── tools │ │ └── cleanup │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ └── src │ │ └── cleanup.cpp ├── storage │ ├── CMakeLists.txt │ ├── MigrationGuide.md │ ├── README.md │ ├── TestingGuide.md │ ├── assets.json │ ├── azure-storage-blobs │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── cgmanifest.json │ │ ├── inc │ │ │ ├── ApiViewSettings.json │ │ │ └── azure │ │ │ │ └── storage │ │ │ │ ├── blobs.hpp │ │ │ │ └── blobs │ │ │ │ ├── append_blob_client.hpp │ │ │ │ ├── blob_batch.hpp │ │ │ │ ├── blob_client.hpp │ │ │ │ ├── blob_container_client.hpp │ │ │ │ ├── blob_lease_client.hpp │ │ │ │ ├── blob_options.hpp │ │ │ │ ├── blob_responses.hpp │ │ │ │ ├── blob_sas_builder.hpp │ │ │ │ ├── blob_service_client.hpp │ │ │ │ ├── block_blob_client.hpp │ │ │ │ ├── deferred_response.hpp │ │ │ │ ├── dll_import_export.hpp │ │ │ │ ├── page_blob_client.hpp │ │ │ │ ├── rest_client.hpp │ │ │ │ └── rtti.hpp │ │ ├── perf-resources.bicep │ │ ├── perf-tests.yml │ │ ├── perf.yml │ │ ├── samples │ │ │ ├── CMakeLists.txt │ │ │ ├── blob_getting_started.cpp │ │ │ ├── blob_list_operation.cpp │ │ │ ├── blob_list_operation_with_timeout.cpp │ │ │ ├── blob_query.cpp │ │ │ ├── blob_sas.cpp │ │ │ └── transactional_checksum.cpp │ │ ├── src │ │ │ ├── append_blob_client.cpp │ │ │ ├── blob_batch.cpp │ │ │ ├── blob_client.cpp │ │ │ ├── blob_container_client.cpp │ │ │ ├── blob_lease_client.cpp │ │ │ ├── blob_options.cpp │ │ │ ├── blob_responses.cpp │ │ │ ├── blob_sas_builder.cpp │ │ │ ├── blob_service_client.cpp │ │ │ ├── block_blob_client.cpp │ │ │ ├── page_blob_client.cpp │ │ │ ├── private │ │ │ │ ├── avro_parser.cpp │ │ │ │ ├── avro_parser.hpp │ │ │ │ └── package_version.hpp │ │ │ └── rest_client.cpp │ │ ├── swagger │ │ │ └── README.md │ │ ├── test │ │ │ ├── fault-injector │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── azure_storage_blobs_fault_injector_test.cpp │ │ │ ├── perf │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── inc │ │ │ │ │ └── azure │ │ │ │ │ │ └── storage │ │ │ │ │ │ └── blobs │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── blob_base_test.hpp │ │ │ │ │ │ ├── download_blob_from_sas.hpp │ │ │ │ │ │ ├── download_blob_pipeline_only.hpp │ │ │ │ │ │ ├── download_blob_test.hpp │ │ │ │ │ │ ├── download_blob_transport_only.hpp │ │ │ │ │ │ ├── list_blob_test.hpp │ │ │ │ │ │ └── upload_blob_test.hpp │ │ │ │ └── src │ │ │ │ │ └── azure_storage_blobs_perf_test.cpp │ │ │ └── ut │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── append_blob_client_test.cpp │ │ │ │ ├── append_blob_client_test.hpp │ │ │ │ ├── bearer_token_test.cpp │ │ │ │ ├── blob_batch_client_test.cpp │ │ │ │ ├── blob_container_client_test.cpp │ │ │ │ ├── blob_container_client_test.hpp │ │ │ │ ├── blob_query_test.cpp │ │ │ │ ├── blob_sas_test.cpp │ │ │ │ ├── blob_service_client_test.cpp │ │ │ │ ├── blob_service_client_test.hpp │ │ │ │ ├── block_blob_client_test.cpp │ │ │ │ ├── block_blob_client_test.hpp │ │ │ │ ├── connection_reuse_test.cpp │ │ │ │ ├── macro_guard.cpp │ │ │ │ ├── page_blob_client_test.cpp │ │ │ │ ├── page_blob_client_test.hpp │ │ │ │ ├── simplified_header_test.cpp │ │ │ │ ├── storage_retry_policy_test.cpp │ │ │ │ └── storage_timeout_test.cpp │ │ ├── vcpkg.json │ │ └── vcpkg │ │ │ ├── Config.cmake.in │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── azure-storage-common │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── cgmanifest.json │ │ ├── inc │ │ │ ├── ApiViewSettings.json │ │ │ └── azure │ │ │ │ └── storage │ │ │ │ └── common │ │ │ │ ├── access_conditions.hpp │ │ │ │ ├── account_sas_builder.hpp │ │ │ │ ├── crypt.hpp │ │ │ │ ├── dll_import_export.hpp │ │ │ │ ├── internal │ │ │ │ ├── concurrent_transfer.hpp │ │ │ │ ├── constants.hpp │ │ │ │ ├── file_io.hpp │ │ │ │ ├── reliable_stream.hpp │ │ │ │ ├── shared_key_policy.hpp │ │ │ │ ├── storage_bearer_token_auth.hpp │ │ │ │ ├── storage_bearer_token_authentication_policy.hpp │ │ │ │ ├── storage_per_retry_policy.hpp │ │ │ │ ├── storage_service_version_policy.hpp │ │ │ │ ├── storage_switch_to_secondary_policy.hpp │ │ │ │ └── xml_wrapper.hpp │ │ │ │ ├── rtti.hpp │ │ │ │ ├── storage_common.hpp │ │ │ │ ├── storage_credential.hpp │ │ │ │ └── storage_exception.hpp │ │ ├── src │ │ │ ├── account_sas_builder.cpp │ │ │ ├── crypt.cpp │ │ │ ├── file_io.cpp │ │ │ ├── private │ │ │ │ └── package_version.hpp │ │ │ ├── reliable_stream.cpp │ │ │ ├── shared_key_policy.cpp │ │ │ ├── storage_bearer_token_authentication_policy.cpp │ │ │ ├── storage_credential.cpp │ │ │ ├── storage_exception.cpp │ │ │ ├── storage_per_retry_policy.cpp │ │ │ ├── storage_switch_to_secondary_policy.cpp │ │ │ └── xml_wrapper.cpp │ │ ├── test │ │ │ └── ut │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crypt_functions_test.cpp │ │ │ │ ├── metadata_test.cpp │ │ │ │ ├── storage_credential_test.cpp │ │ │ │ ├── test_base.cpp │ │ │ │ └── test_base.hpp │ │ ├── vcpkg.json │ │ └── vcpkg │ │ │ ├── Config.cmake.in │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── azure-storage-files-datalake │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── cgmanifest.json │ │ ├── inc │ │ │ ├── ApiViewSettings.json │ │ │ └── azure │ │ │ │ └── storage │ │ │ │ └── files │ │ │ │ ├── datalake.hpp │ │ │ │ └── datalake │ │ │ │ ├── datalake_directory_client.hpp │ │ │ │ ├── datalake_file_client.hpp │ │ │ │ ├── datalake_file_system_client.hpp │ │ │ │ ├── datalake_lease_client.hpp │ │ │ │ ├── datalake_options.hpp │ │ │ │ ├── datalake_path_client.hpp │ │ │ │ ├── datalake_responses.hpp │ │ │ │ ├── datalake_sas_builder.hpp │ │ │ │ ├── datalake_service_client.hpp │ │ │ │ ├── dll_import_export.hpp │ │ │ │ ├── rest_client.hpp │ │ │ │ └── rtti.hpp │ │ ├── samples │ │ │ ├── CMakeLists.txt │ │ │ └── datalake_getting_started.cpp │ │ ├── src │ │ │ ├── datalake_directory_client.cpp │ │ │ ├── datalake_file_client.cpp │ │ │ ├── datalake_file_system_client.cpp │ │ │ ├── datalake_lease_client.cpp │ │ │ ├── datalake_options.cpp │ │ │ ├── datalake_path_client.cpp │ │ │ ├── datalake_responses.cpp │ │ │ ├── datalake_sas_builder.cpp │ │ │ ├── datalake_service_client.cpp │ │ │ ├── datalake_utilities.cpp │ │ │ ├── private │ │ │ │ ├── datalake_constants.hpp │ │ │ │ ├── datalake_utilities.hpp │ │ │ │ └── package_version.hpp │ │ │ └── rest_client.cpp │ │ ├── swagger │ │ │ └── README.md │ │ ├── test │ │ │ └── ut │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── datalake_directory_client_test.cpp │ │ │ │ ├── datalake_directory_client_test.hpp │ │ │ │ ├── datalake_file_client_test.cpp │ │ │ │ ├── datalake_file_client_test.hpp │ │ │ │ ├── datalake_file_query_test.cpp │ │ │ │ ├── datalake_file_system_client_test.cpp │ │ │ │ ├── datalake_file_system_client_test.hpp │ │ │ │ ├── datalake_path_client_test.cpp │ │ │ │ ├── datalake_path_client_test.hpp │ │ │ │ ├── datalake_sas_test.cpp │ │ │ │ ├── datalake_service_client_test.cpp │ │ │ │ ├── datalake_service_client_test.hpp │ │ │ │ ├── macro_guard.cpp │ │ │ │ └── simplified_header_test.cpp │ │ ├── vcpkg.json │ │ └── vcpkg │ │ │ ├── Config.cmake.in │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── azure-storage-files-shares │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── cgmanifest.json │ │ ├── inc │ │ │ ├── ApiViewSettings.json │ │ │ └── azure │ │ │ │ └── storage │ │ │ │ └── files │ │ │ │ ├── shares.hpp │ │ │ │ └── shares │ │ │ │ ├── dll_import_export.hpp │ │ │ │ ├── rest_client.hpp │ │ │ │ ├── rtti.hpp │ │ │ │ ├── share_client.hpp │ │ │ │ ├── share_constants.hpp │ │ │ │ ├── share_directory_client.hpp │ │ │ │ ├── share_file_client.hpp │ │ │ │ ├── share_lease_client.hpp │ │ │ │ ├── share_options.hpp │ │ │ │ ├── share_responses.hpp │ │ │ │ ├── share_sas_builder.hpp │ │ │ │ └── share_service_client.hpp │ │ ├── samples │ │ │ ├── CMakeLists.txt │ │ │ └── file_share_getting_started.cpp │ │ ├── src │ │ │ ├── private │ │ │ │ └── package_version.hpp │ │ │ ├── rest_client.cpp │ │ │ ├── share_client.cpp │ │ │ ├── share_directory_client.cpp │ │ │ ├── share_file_client.cpp │ │ │ ├── share_lease_client.cpp │ │ │ ├── share_options.cpp │ │ │ ├── share_responses.cpp │ │ │ ├── share_sas_builder.cpp │ │ │ └── share_service_client.cpp │ │ ├── swagger │ │ │ └── README.md │ │ ├── test │ │ │ └── ut │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── macro_guard.cpp │ │ │ │ ├── share_client_test.cpp │ │ │ │ ├── share_client_test.hpp │ │ │ │ ├── share_directory_client_test.cpp │ │ │ │ ├── share_directory_client_test.hpp │ │ │ │ ├── share_file_attributes_test.cpp │ │ │ │ ├── share_file_client_test.cpp │ │ │ │ ├── share_file_client_test.hpp │ │ │ │ ├── share_sas_test.cpp │ │ │ │ ├── share_service_client_test.cpp │ │ │ │ ├── share_service_client_test.hpp │ │ │ │ ├── share_utility_test.cpp │ │ │ │ └── simplified_header_test.cpp │ │ ├── vcpkg.json │ │ └── vcpkg │ │ │ ├── Config.cmake.in │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── azure-storage-queues │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── cgmanifest.json │ │ ├── inc │ │ │ ├── ApiViewSettings.json │ │ │ └── azure │ │ │ │ └── storage │ │ │ │ ├── queues.hpp │ │ │ │ └── queues │ │ │ │ ├── dll_import_export.hpp │ │ │ │ ├── queue_client.hpp │ │ │ │ ├── queue_options.hpp │ │ │ │ ├── queue_responses.hpp │ │ │ │ ├── queue_sas_builder.hpp │ │ │ │ ├── queue_service_client.hpp │ │ │ │ ├── rest_client.hpp │ │ │ │ └── rtti.hpp │ │ ├── samples │ │ │ ├── CMakeLists.txt │ │ │ ├── queue_encode_message.cpp │ │ │ └── queue_getting_started.cpp │ │ ├── src │ │ │ ├── private │ │ │ │ └── package_version.hpp │ │ │ ├── queue_client.cpp │ │ │ ├── queue_options.cpp │ │ │ ├── queue_responses.cpp │ │ │ ├── queue_sas_builder.cpp │ │ │ ├── queue_service_client.cpp │ │ │ └── rest_client.cpp │ │ ├── swagger │ │ │ └── README.md │ │ ├── test │ │ │ └── ut │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── macro_guard.cpp │ │ │ │ ├── queue_client_messages_test.cpp │ │ │ │ ├── queue_client_test.cpp │ │ │ │ ├── queue_client_test.hpp │ │ │ │ ├── queue_sas_test.cpp │ │ │ │ ├── queue_service_client_test.cpp │ │ │ │ ├── queue_service_client_test.hpp │ │ │ │ └── simplified_header_test.cpp │ │ ├── vcpkg.json │ │ └── vcpkg │ │ │ ├── Config.cmake.in │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── ci.yml │ ├── faq.md │ ├── test-resources-post.ps1 │ └── test-resources.json ├── tables │ ├── CMakeLists.txt │ ├── assets.json │ ├── azure-data-tables │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── cgmanifest.json │ │ ├── inc │ │ │ ├── ApiViewSettings.json │ │ │ └── azure │ │ │ │ └── data │ │ │ │ ├── tables.hpp │ │ │ │ └── tables │ │ │ │ ├── dll_import_export.hpp │ │ │ │ ├── models.hpp │ │ │ │ ├── rtti.hpp │ │ │ │ ├── table_audience.hpp │ │ │ │ ├── table_client.hpp │ │ │ │ └── table_service_client.hpp │ │ ├── samples │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── tables_entity_operations.cpp │ │ │ ├── tables_getting_started.cpp │ │ │ ├── tables_service_operations.cpp │ │ │ ├── tables_transactions_fail.cpp │ │ │ └── tables_transactions_ok.cpp │ │ ├── src │ │ │ ├── models.cpp │ │ │ ├── policies │ │ │ │ ├── tenant_bearer_token_policy.cpp │ │ │ │ └── timeout_policy.cpp │ │ │ ├── private │ │ │ │ ├── package_version.hpp │ │ │ │ ├── policies │ │ │ │ │ ├── service_version_policy.hpp │ │ │ │ │ ├── tenant_bearer_token_policy.hpp │ │ │ │ │ └── timeout_policy.hpp │ │ │ │ ├── serializers.hpp │ │ │ │ ├── tables_constants.hpp │ │ │ │ ├── url_encode.hpp │ │ │ │ └── xml_wrapper.hpp │ │ │ ├── serializers.cpp │ │ │ ├── table_clients.cpp │ │ │ └── xml_wrapper.cpp │ │ ├── test │ │ │ ├── stress │ │ │ │ ├── .helmignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Chart.yaml │ │ │ │ ├── Dockerfile │ │ │ │ ├── README.md │ │ │ │ ├── deploy.ps1 │ │ │ │ ├── scenarios-matrix.yaml │ │ │ │ ├── tables_stress_test.cpp │ │ │ │ └── templates │ │ │ │ │ └── deploy-job.yaml │ │ │ └── ut │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── macro_guard.cpp │ │ │ │ ├── serializers_test.cpp │ │ │ │ ├── serializers_test.hpp │ │ │ │ ├── table_client_test.cpp │ │ │ │ ├── table_client_test.hpp │ │ │ │ ├── transactions_test.cpp │ │ │ │ └── transactions_test.hpp │ │ ├── vcpkg.json │ │ └── vcpkg │ │ │ ├── Config.cmake.in │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── ci.yml │ ├── test-resources-post.ps1 │ └── test-resources.json └── template │ ├── CMakeLists.txt │ ├── azure-template │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── NOTICE.txt │ ├── README.md │ ├── cgmanifest.json │ ├── inc │ │ ├── ApiViewSettings.json │ │ └── azure │ │ │ ├── template.hpp │ │ │ └── template │ │ │ ├── dll_import_export.hpp │ │ │ ├── rtti.hpp │ │ │ └── template_client.hpp │ ├── src │ │ ├── private │ │ │ └── package_version.hpp │ │ └── template_client.cpp │ ├── test │ │ ├── CMakeLists.txt │ │ └── ut │ │ │ ├── macro_guard.cpp │ │ │ └── template_test.cpp │ ├── vcpkg.json │ └── vcpkg │ │ ├── Config.cmake.in │ │ ├── portfile.cmake │ │ └── vcpkg.json │ └── ci.yml ├── tools └── AzureVcpkg.cmake ├── vcpkg-custom-ports └── openssl │ ├── install-pc-files.cmake │ ├── openssl.pc.in │ ├── portfile.cmake │ ├── unix │ ├── CMakeLists.txt │ ├── portfile.cmake │ └── remove-deps.cmake │ ├── usage │ ├── uwp │ ├── EnableUWPSupport.patch │ ├── make-openssl.bat │ └── portfile.cmake │ ├── vcpkg-cmake-wrapper.cmake.in │ ├── vcpkg.json │ └── windows │ └── portfile.cmake └── vcpkg.json /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/.clang-format -------------------------------------------------------------------------------- /.config/1espt/PipelineAutobaseliningConfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/.config/1espt/PipelineAutobaseliningConfig.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CODEOWNERS_baseline_errors.txt: -------------------------------------------------------------------------------- 1 | anilba06 is not a public member of Azure. 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question-query-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/.github/ISSUE_TEMPLATE/question-query-template.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/event-processor.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/.github/event-processor.config -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/copilot-setup-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/.github/workflows/copilot-setup-steps.yml -------------------------------------------------------------------------------- /.github/workflows/event-processor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/.github/workflows/event-processor.yml -------------------------------------------------------------------------------- /.github/workflows/event.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/.github/workflows/event.yml -------------------------------------------------------------------------------- /.github/workflows/post-apiview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/.github/workflows/post-apiview.yml -------------------------------------------------------------------------------- /.github/workflows/scheduled-event-processor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/.github/workflows/scheduled-event-processor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/.vscode/cspell.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /cmake-modules/AddGoogleTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/cmake-modules/AddGoogleTest.cmake -------------------------------------------------------------------------------- /cmake-modules/AzureBuildTargetForCI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/cmake-modules/AzureBuildTargetForCI.cmake -------------------------------------------------------------------------------- /cmake-modules/AzureCodeCoverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/cmake-modules/AzureCodeCoverage.cmake -------------------------------------------------------------------------------- /cmake-modules/AzureConfigRTTI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/cmake-modules/AzureConfigRTTI.cmake -------------------------------------------------------------------------------- /cmake-modules/AzureDoxygen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/cmake-modules/AzureDoxygen.cmake -------------------------------------------------------------------------------- /cmake-modules/AzureGlobalCompileOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/cmake-modules/AzureGlobalCompileOptions.cmake -------------------------------------------------------------------------------- /cmake-modules/AzureTransportAdapters.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/cmake-modules/AzureTransportAdapters.cmake -------------------------------------------------------------------------------- /cmake-modules/AzureVcpkg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/cmake-modules/AzureVcpkg.cmake -------------------------------------------------------------------------------- /cmake-modules/AzureVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/cmake-modules/AzureVersion.cmake -------------------------------------------------------------------------------- /cmake-modules/CreateMapFile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/cmake-modules/CreateMapFile.cmake -------------------------------------------------------------------------------- /cmake-modules/DownloadJsonTestData.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/cmake-modules/DownloadJsonTestData.cmake -------------------------------------------------------------------------------- /cmake-modules/FolderList.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/cmake-modules/FolderList.cmake -------------------------------------------------------------------------------- /cmake-modules/PerfTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/cmake-modules/PerfTest.cmake -------------------------------------------------------------------------------- /cmake-modules/TSPCompile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/cmake-modules/TSPCompile.cmake -------------------------------------------------------------------------------- /cmake-modules/TestProxyPrep.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/cmake-modules/TestProxyPrep.cmake -------------------------------------------------------------------------------- /doc/DistributedTracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/doc/DistributedTracing.md -------------------------------------------------------------------------------- /doc/HttpTransportAdapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/doc/HttpTransportAdapter.md -------------------------------------------------------------------------------- /doc/LibcurlTransportAdapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/doc/LibcurlTransportAdapter.md -------------------------------------------------------------------------------- /doc/Operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/doc/Operation.md -------------------------------------------------------------------------------- /doc/PerformanceTesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/doc/PerformanceTesting.md -------------------------------------------------------------------------------- /doc/SnippetGeneration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/doc/SnippetGeneration.md -------------------------------------------------------------------------------- /doc/StressTest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/doc/StressTest.md -------------------------------------------------------------------------------- /doc/TestProxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/doc/TestProxy.md -------------------------------------------------------------------------------- /eng/CredScanSuppression.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/CredScanSuppression.json -------------------------------------------------------------------------------- /eng/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/README.md -------------------------------------------------------------------------------- /eng/common/TestResources/New-TestResources.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/TestResources/New-TestResources.cmd -------------------------------------------------------------------------------- /eng/common/TestResources/New-TestResources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/TestResources/New-TestResources.ps1 -------------------------------------------------------------------------------- /eng/common/TestResources/New-TestResources.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/TestResources/New-TestResources.ps1.md -------------------------------------------------------------------------------- /eng/common/TestResources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/TestResources/README.md -------------------------------------------------------------------------------- /eng/common/TestResources/Remove-TestResources.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/TestResources/Remove-TestResources.cmd -------------------------------------------------------------------------------- /eng/common/TestResources/Remove-TestResources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/TestResources/Remove-TestResources.ps1 -------------------------------------------------------------------------------- /eng/common/TestResources/Remove-TestResources.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/TestResources/Remove-TestResources.ps1.md -------------------------------------------------------------------------------- /eng/common/TestResources/SubConfig-Helpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/TestResources/SubConfig-Helpers.ps1 -------------------------------------------------------------------------------- /eng/common/TestResources/TestResources-Helpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/TestResources/TestResources-Helpers.ps1 -------------------------------------------------------------------------------- /eng/common/TestResources/Update-TestResources.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/TestResources/Update-TestResources.cmd -------------------------------------------------------------------------------- /eng/common/TestResources/Update-TestResources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/TestResources/Update-TestResources.ps1 -------------------------------------------------------------------------------- /eng/common/TestResources/Update-TestResources.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/TestResources/Update-TestResources.ps1.md -------------------------------------------------------------------------------- /eng/common/TestResources/build-test-resource-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/TestResources/build-test-resource-config.yml -------------------------------------------------------------------------------- /eng/common/TestResources/clouds/AzureChinaCloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/TestResources/clouds/AzureChinaCloud.json -------------------------------------------------------------------------------- /eng/common/TestResources/clouds/AzureCloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/TestResources/clouds/AzureCloud.json -------------------------------------------------------------------------------- /eng/common/TestResources/clouds/AzureUSGovernment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/TestResources/clouds/AzureUSGovernment.json -------------------------------------------------------------------------------- /eng/common/TestResources/deploy-test-resources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/TestResources/deploy-test-resources.yml -------------------------------------------------------------------------------- /eng/common/TestResources/remove-test-resources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/TestResources/remove-test-resources.yml -------------------------------------------------------------------------------- /eng/common/TestResources/setup-environments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/TestResources/setup-environments.yml -------------------------------------------------------------------------------- /eng/common/docgeneration/Generate-DocIndex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/docgeneration/Generate-DocIndex.ps1 -------------------------------------------------------------------------------- /eng/common/docgeneration/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/docgeneration/assets/logo.svg -------------------------------------------------------------------------------- /eng/common/docgeneration/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/docgeneration/docfx.json -------------------------------------------------------------------------------- /eng/common/docgeneration/templates/matthews/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/docgeneration/templates/matthews/styles/main.css -------------------------------------------------------------------------------- /eng/common/docgeneration/templates/matthews/styles/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/docgeneration/templates/matthews/styles/main.js -------------------------------------------------------------------------------- /eng/common/instructions/copilot/sdk-release.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/instructions/copilot/sdk-release.instructions.md -------------------------------------------------------------------------------- /eng/common/knowledge/customizing-client-tsp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/knowledge/customizing-client-tsp.md -------------------------------------------------------------------------------- /eng/common/mcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/mcp/README.md -------------------------------------------------------------------------------- /eng/common/mcp/azure-sdk-mcp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/mcp/azure-sdk-mcp.ps1 -------------------------------------------------------------------------------- /eng/common/pipelines/ai-evals-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/ai-evals-tests.yml -------------------------------------------------------------------------------- /eng/common/pipelines/codeowners-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/codeowners-linter.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/jobs/docindex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/jobs/docindex.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/jobs/generate-job-matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/jobs/generate-job-matrix.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/jobs/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/jobs/npm-publish.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/jobs/perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/jobs/perf.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/jobs/prepare-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/jobs/prepare-pipelines.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/bypass-local-dns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/bypass-local-dns.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/cache-ps-modules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/cache-ps-modules.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/check-spelling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/check-spelling.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/cosmos-emulator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/cosmos-emulator.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/create-apireview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/create-apireview.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/credscan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/credscan.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/detect-api-changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/detect-api-changes.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/git-push-changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/git-push-changes.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/mashup-doc-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/mashup-doc-index.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/policheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/policheck.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/publish-artifact.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/publish-artifact.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/publish-blobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/publish-blobs.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/retain-run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/retain-run.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/run-pester-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/run-pester-tests.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/set-default-branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/set-default-branch.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/sparse-checkout.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/sparse-checkout.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/validate-filename.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/validate-filename.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/verify-agent-os.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/verify-agent-os.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/verify-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/verify-changelog.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/verify-changelogs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/verify-changelogs.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/verify-links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/verify-links.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/verify-path-length.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/verify-path-length.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/verify-readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/verify-readme.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/verify-readmes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/verify-readmes.yml -------------------------------------------------------------------------------- /eng/common/pipelines/templates/steps/verify-samples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/pipelines/templates/steps/verify-samples.yml -------------------------------------------------------------------------------- /eng/common/scripts/Add-IssueComment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Add-IssueComment.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Add-IssueLabels.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Add-IssueLabels.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Add-RetentionLease.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Add-RetentionLease.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/ChangeLog-Operations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/ChangeLog-Operations.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Cosmos-Emulator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Cosmos-Emulator.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Create-APIReview.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Create-APIReview.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Delete-RemoteBranches.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Delete-RemoteBranches.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Delete-RemoteTag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Delete-RemoteTag.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Detect-Api-Changes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Detect-Api-Changes.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Generate-PR-Diff.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Generate-PR-Diff.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Get-BuildSourceDescription.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Get-BuildSourceDescription.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Get-PullRequestCreator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Get-PullRequestCreator.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Helpers/ApiView-Helpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Helpers/ApiView-Helpers.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Helpers/AzSdkTool-Helpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Helpers/AzSdkTool-Helpers.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Helpers/CommandInvocation-Helpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Helpers/CommandInvocation-Helpers.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Helpers/DevOps-WorkItem-Helpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Helpers/DevOps-WorkItem-Helpers.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Helpers/Metadata-Helpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Helpers/Metadata-Helpers.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Helpers/PSModule-Helpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Helpers/PSModule-Helpers.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Helpers/Package-Helpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Helpers/Package-Helpers.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Helpers/Resource-Helpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Helpers/Resource-Helpers.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Helpers/git-helpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Helpers/git-helpers.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Helpers/git-helpers.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Helpers/git-helpers.tests.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Import-AzModules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Import-AzModules.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Invoke-DevOpsAPI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Invoke-DevOpsAPI.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Invoke-GitHubAPI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Invoke-GitHubAPI.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Mark-ReleasePlanCompletion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Mark-ReleasePlanCompletion.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/New-RegenerateMatrix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/New-RegenerateMatrix.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/New-ReleaseAsset.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/New-ReleaseAsset.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Package-Properties.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Package-Properties.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Prepare-Release.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Prepare-Release.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Queue-Pipeline.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Queue-Pipeline.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Remove-IssueLabel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Remove-IssueLabel.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Save-Package-Properties.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Save-Package-Properties.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/SemVer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/SemVer.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Service-Level-Readme-Automation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Service-Level-Readme-Automation.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Set-VcpkgWriteModeCache.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Set-VcpkgWriteModeCache.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/SetTestPipelineVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/SetTestPipelineVersion.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Submit-PullRequest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Submit-PullRequest.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Test-SampleMetadata.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Test-SampleMetadata.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/TypeSpec-Project-Generate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/TypeSpec-Project-Generate.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/TypeSpec-Project-Process.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/TypeSpec-Project-Process.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/TypeSpec-Project-Sync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/TypeSpec-Project-Sync.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Update-ChangeLog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Update-ChangeLog.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Update-DevOps-Release-WorkItem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Update-DevOps-Release-WorkItem.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Update-DocsMsMetadata.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Update-DocsMsMetadata.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Update-DocsMsPackageMonikers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Update-DocsMsPackageMonikers.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Update-DocsMsPackages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Update-DocsMsPackages.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Update-DocsMsToc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Update-DocsMsToc.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Update-GeneratedSdks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Update-GeneratedSdks.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Update-PullRequest-In-ReleasePlan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Update-PullRequest-In-ReleasePlan.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Validate-All-Packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Validate-All-Packages.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Validate-Package.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Validate-Package.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Verify-AgentOS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Verify-AgentOS.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Verify-ChangeLog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Verify-ChangeLog.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Verify-ChangeLogs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Verify-ChangeLogs.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Verify-Links.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Verify-Links.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Verify-Readme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Verify-Readme.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Verify-RequiredDocsJsonMembers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Verify-RequiredDocsJsonMembers.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Verify-Resource-Ref.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Verify-Resource-Ref.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Verify-RestApiSpecLocation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Verify-RestApiSpecLocation.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/Write-FileSystemMetrics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/Write-FileSystemMetrics.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/X509Certificate2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/X509Certificate2/README.md -------------------------------------------------------------------------------- /eng/common/scripts/X509Certificate2/X509Certificate2.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/X509Certificate2/X509Certificate2.psm1 -------------------------------------------------------------------------------- /eng/common/scripts/artifact-metadata-parsing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/artifact-metadata-parsing.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/check-for-git-changes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/check-for-git-changes.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/check-spelling-in-changed-files.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/check-spelling-in-changed-files.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/common.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/copy-docs-to-blobstorage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/copy-docs-to-blobstorage.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/create-tags-and-git-release.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/create-tags-and-git-release.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/get-changedfiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/get-changedfiles.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/git-branch-push.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/git-branch-push.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/job-matrix/Create-JobMatrix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/job-matrix/Create-JobMatrix.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/job-matrix/Create-PrJobMatrix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/job-matrix/Create-PrJobMatrix.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/job-matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/job-matrix/README.md -------------------------------------------------------------------------------- /eng/common/scripts/job-matrix/job-matrix-functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/job-matrix/job-matrix-functions.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/job-matrix/pullrequest-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/job-matrix/pullrequest-faq.md -------------------------------------------------------------------------------- /eng/common/scripts/logging.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/logging.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/stress-testing/deploy-stress-tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/stress-testing/deploy-stress-tests.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/trust-proxy-certificate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/trust-proxy-certificate.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/typespec/New-EmitterPackageJson.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/typespec/New-EmitterPackageJson.ps1 -------------------------------------------------------------------------------- /eng/common/scripts/typespec/New-EmitterPackageLock.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/scripts/typespec/New-EmitterPackageLock.ps1 -------------------------------------------------------------------------------- /eng/common/spelling/Invoke-Cspell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/spelling/Invoke-Cspell.ps1 -------------------------------------------------------------------------------- /eng/common/spelling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/spelling/README.md -------------------------------------------------------------------------------- /eng/common/spelling/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/spelling/package-lock.json -------------------------------------------------------------------------------- /eng/common/spelling/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/spelling/package.json -------------------------------------------------------------------------------- /eng/common/testproxy/apply-dev-cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/testproxy/apply-dev-cert.sh -------------------------------------------------------------------------------- /eng/common/testproxy/docker-start-proxy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/testproxy/docker-start-proxy.ps1 -------------------------------------------------------------------------------- /eng/common/testproxy/dotnet-devcert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/testproxy/dotnet-devcert.crt -------------------------------------------------------------------------------- /eng/common/testproxy/dotnet-devcert.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/testproxy/dotnet-devcert.pfx -------------------------------------------------------------------------------- /eng/common/testproxy/install-test-proxy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/testproxy/install-test-proxy.ps1 -------------------------------------------------------------------------------- /eng/common/testproxy/localhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/testproxy/localhost.conf -------------------------------------------------------------------------------- /eng/common/testproxy/onboarding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/testproxy/onboarding/README.md -------------------------------------------------------------------------------- /eng/common/testproxy/onboarding/common-asset-functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/testproxy/onboarding/common-asset-functions.ps1 -------------------------------------------------------------------------------- /eng/common/testproxy/onboarding/generate-assets-json.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/testproxy/onboarding/generate-assets-json.ps1 -------------------------------------------------------------------------------- /eng/common/testproxy/publish-proxy-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/testproxy/publish-proxy-logs.yml -------------------------------------------------------------------------------- /eng/common/testproxy/scripts/override-proxy-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/testproxy/scripts/override-proxy-version.ps1 -------------------------------------------------------------------------------- /eng/common/testproxy/scripts/tag-merge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/testproxy/scripts/tag-merge/README.md -------------------------------------------------------------------------------- /eng/common/testproxy/scripts/tag-merge/merge-proxy-tags.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/testproxy/scripts/tag-merge/merge-proxy-tags.ps1 -------------------------------------------------------------------------------- /eng/common/testproxy/target_version.txt: -------------------------------------------------------------------------------- 1 | 1.0.0-dev.20251022.1 2 | -------------------------------------------------------------------------------- /eng/common/testproxy/test-proxy-standalone-tool.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/testproxy/test-proxy-standalone-tool.yml -------------------------------------------------------------------------------- /eng/common/testproxy/test-proxy-tool-shutdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/testproxy/test-proxy-tool-shutdown.yml -------------------------------------------------------------------------------- /eng/common/testproxy/test-proxy-tool.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/testproxy/test-proxy-tool.yml -------------------------------------------------------------------------------- /eng/common/tsp-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/tsp-client/README.md -------------------------------------------------------------------------------- /eng/common/tsp-client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/tsp-client/package-lock.json -------------------------------------------------------------------------------- /eng/common/tsp-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/common/tsp-client/package.json -------------------------------------------------------------------------------- /eng/docs/api/assets/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/docs/api/assets/DoxygenLayout.xml -------------------------------------------------------------------------------- /eng/docs/api/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/docs/api/assets/README.md -------------------------------------------------------------------------------- /eng/docs/api/assets/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/docs/api/assets/footer.html -------------------------------------------------------------------------------- /eng/docs/api/assets/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/docs/api/assets/header.html -------------------------------------------------------------------------------- /eng/docs/api/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/docs/api/assets/style.css -------------------------------------------------------------------------------- /eng/ignore-links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/ignore-links.txt -------------------------------------------------------------------------------- /eng/pipelines/daily-verification.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/pipelines/daily-verification.yml -------------------------------------------------------------------------------- /eng/pipelines/docindex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/pipelines/docindex.yml -------------------------------------------------------------------------------- /eng/pipelines/prepare-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/pipelines/prepare-pipelines.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/jobs/archetype-sdk-client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/pipelines/templates/jobs/archetype-sdk-client.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/jobs/ci.tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/pipelines/templates/jobs/ci.tests.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/jobs/cmake-generate-jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/pipelines/templates/jobs/cmake-generate-jobs.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/jobs/cmake-generate.tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/pipelines/templates/jobs/cmake-generate.tests.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/jobs/live.tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/pipelines/templates/jobs/live.tests.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/jobs/perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/pipelines/templates/jobs/perf.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/stages/archetype-cpp-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/pipelines/templates/stages/archetype-cpp-release.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/stages/archetype-sdk-client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/pipelines/templates/stages/archetype-sdk-client.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/stages/archetype-sdk-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/pipelines/templates/stages/archetype-sdk-tests.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/stages/platform-matrix-live.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/pipelines/templates/stages/platform-matrix-live.json -------------------------------------------------------------------------------- /eng/pipelines/templates/stages/platform-matrix-quick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/pipelines/templates/stages/platform-matrix-quick.json -------------------------------------------------------------------------------- /eng/pipelines/templates/stages/platform-matrix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/pipelines/templates/stages/platform-matrix.json -------------------------------------------------------------------------------- /eng/pipelines/templates/steps/cmake-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/pipelines/templates/steps/cmake-build.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/steps/cmake-generate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/pipelines/templates/steps/cmake-generate.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/steps/generate-and-publish-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/pipelines/templates/steps/generate-and-publish-sbom.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/steps/show-failure-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/pipelines/templates/steps/show-failure-logs.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/steps/vcpkg-clone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/pipelines/templates/steps/vcpkg-clone.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/steps/vcpkg-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/pipelines/templates/steps/vcpkg-publish.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/variables/globals.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/pipelines/templates/variables/globals.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/variables/image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/pipelines/templates/variables/image.yml -------------------------------------------------------------------------------- /eng/scripts/Collect-Changelogs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/scripts/Collect-Changelogs.ps1 -------------------------------------------------------------------------------- /eng/scripts/Generate-APIReview-Token-Files.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/scripts/Generate-APIReview-Token-Files.ps1 -------------------------------------------------------------------------------- /eng/scripts/Generate-Snippets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/scripts/Generate-Snippets.ps1 -------------------------------------------------------------------------------- /eng/scripts/Generate-Unified-Header.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/scripts/Generate-Unified-Header.ps1 -------------------------------------------------------------------------------- /eng/scripts/Get-BinarySizes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/scripts/Get-BinarySizes.ps1 -------------------------------------------------------------------------------- /eng/scripts/Get-PkgVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/scripts/Get-PkgVersion.ps1 -------------------------------------------------------------------------------- /eng/scripts/Get-TriggeringUserGitHubAlias.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/scripts/Get-TriggeringUserGitHubAlias.ps1 -------------------------------------------------------------------------------- /eng/scripts/Initialize-VcpkgRelease.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/scripts/Initialize-VcpkgRelease.ps1 -------------------------------------------------------------------------------- /eng/scripts/Install-WSL.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/scripts/Install-WSL.ps1 -------------------------------------------------------------------------------- /eng/scripts/Language-Settings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/scripts/Language-Settings.ps1 -------------------------------------------------------------------------------- /eng/scripts/New-DocsMsArtifact.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/scripts/New-DocsMsArtifact.ps1 -------------------------------------------------------------------------------- /eng/scripts/Show-FailureLogs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/scripts/Show-FailureLogs.ps1 -------------------------------------------------------------------------------- /eng/scripts/Start-TestProxy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/scripts/Start-TestProxy.ps1 -------------------------------------------------------------------------------- /eng/scripts/Stop-TestProxy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/scripts/Stop-TestProxy.ps1 -------------------------------------------------------------------------------- /eng/scripts/Test-ShouldReleaseToVcpkg.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/scripts/Test-ShouldReleaseToVcpkg.ps1 -------------------------------------------------------------------------------- /eng/scripts/Update-PkgVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/scripts/Update-PkgVersion.ps1 -------------------------------------------------------------------------------- /eng/scripts/Update-VcpkgBeta.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/scripts/Update-VcpkgBeta.ps1 -------------------------------------------------------------------------------- /eng/scripts/Update-VcpkgPort.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/scripts/Update-VcpkgPort.ps1 -------------------------------------------------------------------------------- /eng/scripts/typespec/Build-Codegen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/scripts/typespec/Build-Codegen.ps1 -------------------------------------------------------------------------------- /eng/scripts/typespec/Generate-Code.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/scripts/typespec/Generate-Code.ps1 -------------------------------------------------------------------------------- /eng/scripts/typespec/Run-Tsp-Update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/eng/scripts/typespec/Run-Tsp-Update.ps1 -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/helpers/get-env/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/helpers/get-env/CMakeLists.txt -------------------------------------------------------------------------------- /samples/helpers/get-env/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/helpers/get-env/LICENSE -------------------------------------------------------------------------------- /samples/helpers/get-env/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/helpers/get-env/README.md -------------------------------------------------------------------------------- /samples/helpers/get-env/inc/get_env.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/helpers/get-env/inc/get_env.hpp -------------------------------------------------------------------------------- /samples/helpers/get-env/src/get_env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/helpers/get-env/src/get_env.cpp -------------------------------------------------------------------------------- /samples/helpers/service/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/helpers/service/CMakeLists.txt -------------------------------------------------------------------------------- /samples/helpers/service/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/helpers/service/LICENSE -------------------------------------------------------------------------------- /samples/helpers/service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/helpers/service/README.md -------------------------------------------------------------------------------- /samples/helpers/service/inc/azure/service/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/helpers/service/inc/azure/service/client.hpp -------------------------------------------------------------------------------- /samples/helpers/service/src/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/helpers/service/src/client.cpp -------------------------------------------------------------------------------- /samples/integration/beta-packages-vcpkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/integration/beta-packages-vcpkg/README.md -------------------------------------------------------------------------------- /samples/integration/cmake-fetch-content/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/integration/cmake-fetch-content/CMakeLists.txt -------------------------------------------------------------------------------- /samples/integration/cmake-fetch-content/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/integration/cmake-fetch-content/LICENSE -------------------------------------------------------------------------------- /samples/integration/cmake-fetch-content/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/integration/cmake-fetch-content/README.md -------------------------------------------------------------------------------- /samples/integration/cmake-fetch-content/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/integration/cmake-fetch-content/src/main.cpp -------------------------------------------------------------------------------- /samples/integration/cmake-vcpkg/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | CMakeUserPresets.json 3 | -------------------------------------------------------------------------------- /samples/integration/cmake-vcpkg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/integration/cmake-vcpkg/CMakeLists.txt -------------------------------------------------------------------------------- /samples/integration/cmake-vcpkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/integration/cmake-vcpkg/README.md -------------------------------------------------------------------------------- /samples/integration/cmake-vcpkg/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/integration/cmake-vcpkg/main.cpp -------------------------------------------------------------------------------- /samples/integration/cmake-vcpkg/vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/integration/cmake-vcpkg/vcpkg-configuration.json -------------------------------------------------------------------------------- /samples/integration/cmake-vcpkg/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/integration/cmake-vcpkg/vcpkg.json -------------------------------------------------------------------------------- /samples/integration/vcpkg-all-smoke/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/integration/vcpkg-all-smoke/CMakeLists.txt -------------------------------------------------------------------------------- /samples/integration/vcpkg-all-smoke/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/integration/vcpkg-all-smoke/LICENSE -------------------------------------------------------------------------------- /samples/integration/vcpkg-all-smoke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/integration/vcpkg-all-smoke/README.md -------------------------------------------------------------------------------- /samples/integration/vcpkg-all-smoke/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/samples/integration/vcpkg-all-smoke/src/main.cpp -------------------------------------------------------------------------------- /sdk/appconfiguration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/appconfiguration/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/appconfiguration/azure-data-appconfiguration/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/appconfiguration/azure-data-appconfiguration/NOTICE.txt -------------------------------------------------------------------------------- /sdk/appconfiguration/azure-data-appconfiguration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/appconfiguration/azure-data-appconfiguration/README.md -------------------------------------------------------------------------------- /sdk/appconfiguration/azure-data-appconfiguration/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/appconfiguration/azure-data-appconfiguration/vcpkg.json -------------------------------------------------------------------------------- /sdk/appconfiguration/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/appconfiguration/ci.yml -------------------------------------------------------------------------------- /sdk/attestation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/attestation/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/attestation/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/attestation/assets.json -------------------------------------------------------------------------------- /sdk/attestation/azure-security-attestation/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/attestation/azure-security-attestation/CHANGELOG.md -------------------------------------------------------------------------------- /sdk/attestation/azure-security-attestation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/attestation/azure-security-attestation/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/attestation/azure-security-attestation/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/attestation/azure-security-attestation/NOTICE.txt -------------------------------------------------------------------------------- /sdk/attestation/azure-security-attestation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/attestation/azure-security-attestation/README.md -------------------------------------------------------------------------------- /sdk/attestation/azure-security-attestation/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/attestation/azure-security-attestation/cgmanifest.json -------------------------------------------------------------------------------- /sdk/attestation/azure-security-attestation/cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/attestation/azure-security-attestation/cspell.json -------------------------------------------------------------------------------- /sdk/attestation/azure-security-attestation/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/attestation/azure-security-attestation/vcpkg.json -------------------------------------------------------------------------------- /sdk/attestation/azure-security-attestation/vcpkg/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/attestation/azure-security-attestation/vcpkg/vcpkg.json -------------------------------------------------------------------------------- /sdk/attestation/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/attestation/ci.yml -------------------------------------------------------------------------------- /sdk/attestation/test-resources-pre.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/attestation/test-resources-pre.ps1 -------------------------------------------------------------------------------- /sdk/attestation/test-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/attestation/test-resources.json -------------------------------------------------------------------------------- /sdk/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/CHANGELOG.md -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/NOTICE.txt -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/README.md -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/Test-Cleanup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/Test-Cleanup.ps1 -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/Test-Setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/Test-Setup.ps1 -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/cgmanifest.json -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/cspell.json -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/inc/ApiViewSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/inc/ApiViewSettings.json -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/inc/azure/core/amqp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/inc/azure/core/amqp.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/inc/azure/core/amqp/rtti.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/inc/azure/core/amqp/rtti.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/samples/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/samples/README.md -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/samples/internal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/samples/internal/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/samples/test-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/samples/test-resources.json -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/amqp/claim_based_security.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/amqp/claim_based_security.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/amqp/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/amqp/connection.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/amqp/link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/amqp/link.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/amqp/management.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/amqp/management.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/amqp/message_receiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/amqp/message_receiver.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/amqp/message_sender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/amqp/message_sender.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/amqp/private/unique_handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/amqp/private/unique_handle.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/amqp/session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/amqp/session.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/common/global_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/common/global_state.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/impl/uamqp/amqp/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/impl/uamqp/amqp/connection.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/impl/uamqp/amqp/link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/impl/uamqp/amqp/link.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/impl/uamqp/amqp/management.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/impl/uamqp/amqp/management.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/impl/uamqp/amqp/session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/impl/uamqp/amqp/session.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/impl/uamqp/vendor/azure-uamqp-c/build_all/packaging/linux/debian/azure-uamqp-c-dev.install: -------------------------------------------------------------------------------- 1 | usr/include/azureiot/* 2 | -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/impl/uamqp/vendor/azure-uamqp-c/build_all/packaging/linux/debian/azure-uamqp-c-lib.dirs: -------------------------------------------------------------------------------- 1 | usr/lib 2 | -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/impl/uamqp/vendor/azure-uamqp-c/build_all/packaging/linux/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/impl/uamqp/vendor/azure-uamqp-c/build_all/packaging/linux/debian/docs: -------------------------------------------------------------------------------- 1 | readme.md 2 | -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/impl/uamqp/vendor/azure-uamqp-c/build_all/packaging/linux/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/impl/uamqp/vendor/azure-uamqp-c/version.txt: -------------------------------------------------------------------------------- 1 | 1.2.12 -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/models/amqp_detach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/models/amqp_detach.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/models/amqp_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/models/amqp_error.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/models/amqp_header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/models/amqp_header.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/models/amqp_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/models/amqp_message.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/models/amqp_properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/models/amqp_properties.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/models/amqp_transfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/models/amqp_transfer.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/models/amqp_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/models/amqp_value.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/models/message_source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/models/message_source.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/models/message_target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/models/message_target.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/models/messaging_values.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/models/messaging_values.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/models/private/error_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/models/private/error_impl.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/models/private/header_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/models/private/header_impl.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/models/private/source_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/models/private/source_impl.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/models/private/target_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/models/private/target_impl.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/models/private/value_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/models/private/value_impl.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/src/private/package_version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/src/private/package_version.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/test/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/test/ut/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/test/ut/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/test/ut/amqp_header_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/test/ut/amqp_header_tests.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/test/ut/amqp_message_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/test/ut/amqp_message_tests.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/test/ut/amqp_properties_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/test/ut/amqp_properties_tests.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/test/ut/amqp_value_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/test/ut/amqp_value_tests.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/test/ut/azure_core_amqp_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/test/ut/azure_core_amqp_tests.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/test/ut/connection_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/test/ut/connection_tests.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/test/ut/link_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/test/ut/link_tests.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/test/ut/management_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/test/ut/management_tests.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/test/ut/message_source_target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/test/ut/message_source_target.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/test/ut/mock_amqp_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/test/ut/mock_amqp_server.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/test/ut/session_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/test/ut/session_tests.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/test/ut/transport_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/test/ut/transport_tests.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/test/ut_uamqp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/test/ut_uamqp/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/vcpkg.json -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/vcpkg/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/vcpkg/Config.cmake.in -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/vcpkg/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/vcpkg/portfile.cmake -------------------------------------------------------------------------------- /sdk/core/azure-core-amqp/vcpkg/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-amqp/vcpkg/vcpkg.json -------------------------------------------------------------------------------- /sdk/core/azure-core-test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-test/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/core/azure-core-test/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-test/NOTICE.txt -------------------------------------------------------------------------------- /sdk/core/azure-core-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-test/README.md -------------------------------------------------------------------------------- /sdk/core/azure-core-test/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-test/cgmanifest.json -------------------------------------------------------------------------------- /sdk/core/azure-core-test/inc/azure/core/test/test_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-test/inc/azure/core/test/test_base.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core-test/src/private/package_version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-test/src/private/package_version.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core-test/src/test_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-test/src/test_base.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-test/src/test_proxy_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-test/src/test_proxy_manager.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-test/src/test_proxy_policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-test/src/test_proxy_policy.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core-tracing-opentelemetry/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-tracing-opentelemetry/CHANGELOG.md -------------------------------------------------------------------------------- /sdk/core/azure-core-tracing-opentelemetry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-tracing-opentelemetry/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/core/azure-core-tracing-opentelemetry/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-tracing-opentelemetry/NOTICE.txt -------------------------------------------------------------------------------- /sdk/core/azure-core-tracing-opentelemetry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-tracing-opentelemetry/README.md -------------------------------------------------------------------------------- /sdk/core/azure-core-tracing-opentelemetry/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-tracing-opentelemetry/cgmanifest.json -------------------------------------------------------------------------------- /sdk/core/azure-core-tracing-opentelemetry/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-tracing-opentelemetry/vcpkg.json -------------------------------------------------------------------------------- /sdk/core/azure-core-tracing-opentelemetry/vcpkg/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core-tracing-opentelemetry/vcpkg/vcpkg.json -------------------------------------------------------------------------------- /sdk/core/azure-core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/CHANGELOG.md -------------------------------------------------------------------------------- /sdk/core/azure-core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/core/azure-core/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/NOTICE.txt -------------------------------------------------------------------------------- /sdk/core/azure-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/README.md -------------------------------------------------------------------------------- /sdk/core/azure-core/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/cgmanifest.json -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/ApiViewSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/ApiViewSettings.json -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/azure_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/azure_assert.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/base64.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/context.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/cryptography/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/cryptography/hash.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/datetime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/datetime.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/diagnostics/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/diagnostics/logger.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/dll_import_export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/dll_import_export.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/etag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/etag.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/exception.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/http/http.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/http/http.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/http/raw_response.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/http/raw_response.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/http/transport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/http/transport.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/internal/contract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/internal/contract.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/internal/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/internal/json/json.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/internal/strings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/internal/strings.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/io/body_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/io/body_stream.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/match_conditions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/match_conditions.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/nullable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/nullable.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/operation.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/operation_status.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/operation_status.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/paged_response.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/paged_response.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/platform.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/response.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/response.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/rtti.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/rtti.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/tracing/tracing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/tracing/tracing.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/url.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/url.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/inc/azure/core/uuid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/inc/azure/core/uuid.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/azure_assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/azure_assert.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/base64.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/context.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/cryptography/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/cryptography/md5.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/cryptography/sha_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/cryptography/sha_hash.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/datetime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/datetime.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/environment.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/etag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/etag.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/exception.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/http/curl/curl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/http/curl/curl.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/http/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/http/http.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/http/http_sanitizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/http/http_sanitizer.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/http/log_policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/http/log_policy.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/http/policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/http/policy.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/http/raw_response.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/http/raw_response.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/http/request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/http/request.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/http/request_activity_policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/http/request_activity_policy.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/http/retry_policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/http/retry_policy.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/http/telemetry_policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/http/telemetry_policy.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/http/transport_policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/http/transport_policy.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/http/url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/http/url.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/http/user_agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/http/user_agent.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/http/winhttp/win_http_request.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/http/winhttp/win_http_request.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/io/body_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/io/body_stream.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/logger.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/operation_status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/operation_status.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/private/package_version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/private/package_version.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/resource_identifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/resource_identifier.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/tracing/tracing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/tracing/tracing.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/src/uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/src/uuid.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/fault-injector/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/fault-injector/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/core/azure-core/test/libcurl-stress-test/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/libcurl-stress-test/.helmignore -------------------------------------------------------------------------------- /sdk/core/azure-core/test/libcurl-stress-test/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/libcurl-stress-test/Chart.yaml -------------------------------------------------------------------------------- /sdk/core/azure-core/test/libcurl-stress-test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/libcurl-stress-test/Dockerfile -------------------------------------------------------------------------------- /sdk/core/azure-core/test/libcurl-stress-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/libcurl-stress-test/README.md -------------------------------------------------------------------------------- /sdk/core/azure-core/test/libcurl-stress-test/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/libcurl-stress-test/deploy.ps1 -------------------------------------------------------------------------------- /sdk/core/azure-core/test/nlohmann-json-test/src/unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/nlohmann-json-test/src/unit.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/perf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/perf/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/Start-WebSocketServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/Start-WebSocketServer.ps1 -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/assert_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/assert_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/azure_core_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/azure_core_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/base64_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/base64_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/bodystream_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/bodystream_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/client_options_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/client_options_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/context_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/context_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/curl_connection_pool_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/curl_connection_pool_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/curl_options_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/curl_options_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/curl_session_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/curl_session_test.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/curl_session_test_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/curl_session_test_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/datetime_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/datetime_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/etag_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/etag_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/exception_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/exception_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/global_context_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/global_context_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/http_method_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/http_method_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/http_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/http_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/http_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/http_test.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/json_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/json_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/log_policy_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/log_policy_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/logging_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/logging_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/macro_guard_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/macro_guard_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/match_conditions_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/match_conditions_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/md5_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/md5_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/modified_conditions_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/modified_conditions_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/nullable_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/nullable_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/operation_status_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/operation_status_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/operation_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/operation_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/operation_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/operation_test.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/pipeline_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/pipeline_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/policy_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/policy_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/proxy_tests/builddocker.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/proxy_tests/builddocker.ps1 -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/proxy_tests/localproxy.passwd/proxypasswd: -------------------------------------------------------------------------------- 1 | user:$apr1$z0tE.mEW$6OXoAgyTD5vBkM5ON3R9h/ 2 | -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/proxy_tests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/proxy_tests/readme.md -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/proxy_tests/remoteproxy.passwd/proxypasswd: -------------------------------------------------------------------------------- 1 | user:$apr1$z0tE.mEW$6OXoAgyTD5vBkM5ON3R9h/ 2 | -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/proxy_tests/run_wsl_proxy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/proxy_tests/run_wsl_proxy.ps1 -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/proxy_tests/runproxy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/proxy_tests/runproxy.ps1 -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/proxy_tests/verify_proxy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/proxy_tests/verify_proxy.ps1 -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/request_id_policy_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/request_id_policy_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/requirements.txt: -------------------------------------------------------------------------------- 1 | websockets 2 | -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/resource_identifier_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/resource_identifier_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/response_t_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/response_t_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/retry_policy_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/retry_policy_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/service_tracing_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/service_tracing_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/sha_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/sha_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/simplified_header_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/simplified_header_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/string_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/string_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/telemetry_policy_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/telemetry_policy_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/test_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/test_traits.hpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/transport_policy_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/transport_policy_options.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/url_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/url_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/test/ut/uuid_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/test/ut/uuid_test.cpp -------------------------------------------------------------------------------- /sdk/core/azure-core/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/vcpkg.json -------------------------------------------------------------------------------- /sdk/core/azure-core/vcpkg/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/vcpkg/Config.cmake.in -------------------------------------------------------------------------------- /sdk/core/azure-core/vcpkg/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/vcpkg/portfile.cmake -------------------------------------------------------------------------------- /sdk/core/azure-core/vcpkg/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/azure-core/vcpkg/vcpkg.json -------------------------------------------------------------------------------- /sdk/core/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/ci.yml -------------------------------------------------------------------------------- /sdk/core/perf-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/perf-tests.yml -------------------------------------------------------------------------------- /sdk/core/perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/perf.yml -------------------------------------------------------------------------------- /sdk/core/perf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/perf/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/core/perf/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/perf/NOTICE.txt -------------------------------------------------------------------------------- /sdk/core/perf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/perf/README.md -------------------------------------------------------------------------------- /sdk/core/perf/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/perf/cgmanifest.json -------------------------------------------------------------------------------- /sdk/core/perf/inc/azure/perf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/perf/inc/azure/perf.hpp -------------------------------------------------------------------------------- /sdk/core/perf/inc/azure/perf/argagg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/perf/inc/azure/perf/argagg.hpp -------------------------------------------------------------------------------- /sdk/core/perf/inc/azure/perf/base_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/perf/inc/azure/perf/base_test.hpp -------------------------------------------------------------------------------- /sdk/core/perf/inc/azure/perf/dynamic_test_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/perf/inc/azure/perf/dynamic_test_options.hpp -------------------------------------------------------------------------------- /sdk/core/perf/inc/azure/perf/options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/perf/inc/azure/perf/options.hpp -------------------------------------------------------------------------------- /sdk/core/perf/inc/azure/perf/program.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/perf/inc/azure/perf/program.hpp -------------------------------------------------------------------------------- /sdk/core/perf/inc/azure/perf/random_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/perf/inc/azure/perf/random_stream.hpp -------------------------------------------------------------------------------- /sdk/core/perf/inc/azure/perf/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/perf/inc/azure/perf/test.hpp -------------------------------------------------------------------------------- /sdk/core/perf/inc/azure/perf/test_metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/perf/inc/azure/perf/test_metadata.hpp -------------------------------------------------------------------------------- /sdk/core/perf/inc/azure/perf/test_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/perf/inc/azure/perf/test_options.hpp -------------------------------------------------------------------------------- /sdk/core/perf/src/arg_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/perf/src/arg_parser.cpp -------------------------------------------------------------------------------- /sdk/core/perf/src/base_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/perf/src/base_test.cpp -------------------------------------------------------------------------------- /sdk/core/perf/src/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/perf/src/options.cpp -------------------------------------------------------------------------------- /sdk/core/perf/src/program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/perf/src/program.cpp -------------------------------------------------------------------------------- /sdk/core/perf/src/random_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/perf/src/random_stream.cpp -------------------------------------------------------------------------------- /sdk/core/perf/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/perf/test/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/core/perf/test/src/random_stream_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/core/perf/test/src/random_stream_test.cpp -------------------------------------------------------------------------------- /sdk/eventhubs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/eventhubs/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/eventhubs/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/eventhubs/assets.json -------------------------------------------------------------------------------- /sdk/eventhubs/azure-messaging-eventhubs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/eventhubs/azure-messaging-eventhubs/CHANGELOG.md -------------------------------------------------------------------------------- /sdk/eventhubs/azure-messaging-eventhubs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/eventhubs/azure-messaging-eventhubs/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/eventhubs/azure-messaging-eventhubs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/eventhubs/azure-messaging-eventhubs/LICENSE -------------------------------------------------------------------------------- /sdk/eventhubs/azure-messaging-eventhubs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/eventhubs/azure-messaging-eventhubs/README.md -------------------------------------------------------------------------------- /sdk/eventhubs/azure-messaging-eventhubs/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/eventhubs/azure-messaging-eventhubs/cgmanifest.json -------------------------------------------------------------------------------- /sdk/eventhubs/azure-messaging-eventhubs/samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/eventhubs/azure-messaging-eventhubs/samples/README.md -------------------------------------------------------------------------------- /sdk/eventhubs/azure-messaging-eventhubs/src/processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/eventhubs/azure-messaging-eventhubs/src/processor.cpp -------------------------------------------------------------------------------- /sdk/eventhubs/azure-messaging-eventhubs/test/eventhubs-stress-test/.dockerignore: -------------------------------------------------------------------------------- 1 | out/* 2 | 3 | -------------------------------------------------------------------------------- /sdk/eventhubs/azure-messaging-eventhubs/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/eventhubs/azure-messaging-eventhubs/vcpkg.json -------------------------------------------------------------------------------- /sdk/eventhubs/azure-messaging-eventhubs/vcpkg/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/eventhubs/azure-messaging-eventhubs/vcpkg/vcpkg.json -------------------------------------------------------------------------------- /sdk/eventhubs/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/eventhubs/ci.yml -------------------------------------------------------------------------------- /sdk/identity/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/identity/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/assets.json -------------------------------------------------------------------------------- /sdk/identity/azure-identity/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/CHANGELOG.md -------------------------------------------------------------------------------- /sdk/identity/azure-identity/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/identity/azure-identity/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/NOTICE.txt -------------------------------------------------------------------------------- /sdk/identity/azure-identity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/README.md -------------------------------------------------------------------------------- /sdk/identity/azure-identity/TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /sdk/identity/azure-identity/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/cgmanifest.json -------------------------------------------------------------------------------- /sdk/identity/azure-identity/inc/ApiViewSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/inc/ApiViewSettings.json -------------------------------------------------------------------------------- /sdk/identity/azure-identity/inc/azure/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/inc/azure/identity.hpp -------------------------------------------------------------------------------- /sdk/identity/azure-identity/inc/azure/identity/rtti.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/inc/azure/identity/rtti.hpp -------------------------------------------------------------------------------- /sdk/identity/azure-identity/perf-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/perf-resources.json -------------------------------------------------------------------------------- /sdk/identity/azure-identity/perf-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/perf-tests.yml -------------------------------------------------------------------------------- /sdk/identity/azure-identity/perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/perf.yml -------------------------------------------------------------------------------- /sdk/identity/azure-identity/samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/samples/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/identity/azure-identity/src/azure_cli_credential.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/src/azure_cli_credential.cpp -------------------------------------------------------------------------------- /sdk/identity/azure-identity/src/private/identity_log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/src/private/identity_log.hpp -------------------------------------------------------------------------------- /sdk/identity/azure-identity/src/tenant_id_resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/src/tenant_id_resolver.cpp -------------------------------------------------------------------------------- /sdk/identity/azure-identity/src/token_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/src/token_cache.cpp -------------------------------------------------------------------------------- /sdk/identity/azure-identity/src/token_credential_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/src/token_credential_impl.cpp -------------------------------------------------------------------------------- /sdk/identity/azure-identity/test/e2e/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/test/e2e/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/identity/azure-identity/test/perf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/test/perf/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/identity/azure-identity/test/ut/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/test/ut/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/identity/azure-identity/test/ut/macro_guard_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/test/ut/macro_guard_test.cpp -------------------------------------------------------------------------------- /sdk/identity/azure-identity/test/ut/token_cache_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/test/ut/token_cache_test.cpp -------------------------------------------------------------------------------- /sdk/identity/azure-identity/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/vcpkg.json -------------------------------------------------------------------------------- /sdk/identity/azure-identity/vcpkg/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/vcpkg/Config.cmake.in -------------------------------------------------------------------------------- /sdk/identity/azure-identity/vcpkg/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/vcpkg/portfile.cmake -------------------------------------------------------------------------------- /sdk/identity/azure-identity/vcpkg/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/azure-identity/vcpkg/vcpkg.json -------------------------------------------------------------------------------- /sdk/identity/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/ci.yml -------------------------------------------------------------------------------- /sdk/identity/test-resources-pre.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/test-resources-pre.ps1 -------------------------------------------------------------------------------- /sdk/identity/test-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/identity/test-resources.json -------------------------------------------------------------------------------- /sdk/keyvault/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/keyvault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/README.md -------------------------------------------------------------------------------- /sdk/keyvault/TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /sdk/keyvault/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/assets.json -------------------------------------------------------------------------------- /sdk/keyvault/azure-security-keyvault-keys/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/azure-security-keyvault-keys/CHANGELOG.md -------------------------------------------------------------------------------- /sdk/keyvault/azure-security-keyvault-keys/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/azure-security-keyvault-keys/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/keyvault/azure-security-keyvault-keys/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/azure-security-keyvault-keys/NOTICE.txt -------------------------------------------------------------------------------- /sdk/keyvault/azure-security-keyvault-keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/azure-security-keyvault-keys/README.md -------------------------------------------------------------------------------- /sdk/keyvault/azure-security-keyvault-keys/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/azure-security-keyvault-keys/cgmanifest.json -------------------------------------------------------------------------------- /sdk/keyvault/azure-security-keyvault-keys/perf-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/azure-security-keyvault-keys/perf-tests.yml -------------------------------------------------------------------------------- /sdk/keyvault/azure-security-keyvault-keys/perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/azure-security-keyvault-keys/perf.yml -------------------------------------------------------------------------------- /sdk/keyvault/azure-security-keyvault-keys/tspconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/azure-security-keyvault-keys/tspconfig.yaml -------------------------------------------------------------------------------- /sdk/keyvault/azure-security-keyvault-keys/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/azure-security-keyvault-keys/vcpkg.json -------------------------------------------------------------------------------- /sdk/keyvault/azure-security-keyvault-secrets/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/azure-security-keyvault-secrets/CHANGELOG.md -------------------------------------------------------------------------------- /sdk/keyvault/azure-security-keyvault-secrets/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/azure-security-keyvault-secrets/NOTICE.txt -------------------------------------------------------------------------------- /sdk/keyvault/azure-security-keyvault-secrets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/azure-security-keyvault-secrets/README.md -------------------------------------------------------------------------------- /sdk/keyvault/azure-security-keyvault-secrets/perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/azure-security-keyvault-secrets/perf.yml -------------------------------------------------------------------------------- /sdk/keyvault/azure-security-keyvault-secrets/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/azure-security-keyvault-secrets/vcpkg.json -------------------------------------------------------------------------------- /sdk/keyvault/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/ci.yml -------------------------------------------------------------------------------- /sdk/keyvault/test-resources-post.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/test-resources-post.ps1 -------------------------------------------------------------------------------- /sdk/keyvault/test-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/test-resources.json -------------------------------------------------------------------------------- /sdk/keyvault/tools/cleanup/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/tools/cleanup/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/keyvault/tools/cleanup/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/tools/cleanup/LICENSE -------------------------------------------------------------------------------- /sdk/keyvault/tools/cleanup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/tools/cleanup/README.md -------------------------------------------------------------------------------- /sdk/keyvault/tools/cleanup/src/cleanup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/keyvault/tools/cleanup/src/cleanup.cpp -------------------------------------------------------------------------------- /sdk/storage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/storage/MigrationGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/MigrationGuide.md -------------------------------------------------------------------------------- /sdk/storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/README.md -------------------------------------------------------------------------------- /sdk/storage/TestingGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/TestingGuide.md -------------------------------------------------------------------------------- /sdk/storage/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/assets.json -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/CHANGELOG.md -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/NOTICE.txt -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/README.md -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/cgmanifest.json -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/inc/ApiViewSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/inc/ApiViewSettings.json -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/perf-resources.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/perf-resources.bicep -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/perf-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/perf-tests.yml -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/perf.yml -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/samples/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/samples/blob_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/samples/blob_query.cpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/samples/blob_sas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/samples/blob_sas.cpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/src/blob_batch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/src/blob_batch.cpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/src/blob_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/src/blob_client.cpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/src/blob_lease_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/src/blob_lease_client.cpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/src/blob_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/src/blob_options.cpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/src/blob_responses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/src/blob_responses.cpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/src/blob_sas_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/src/blob_sas_builder.cpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/src/block_blob_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/src/block_blob_client.cpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/src/page_blob_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/src/page_blob_client.cpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/src/rest_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/src/rest_client.cpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/swagger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/swagger/README.md -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/test/perf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/test/perf/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/test/ut/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/test/ut/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/test/ut/blob_sas_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/test/ut/blob_sas_test.cpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/test/ut/macro_guard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/test/ut/macro_guard.cpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/vcpkg.json -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/vcpkg/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/vcpkg/Config.cmake.in -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/vcpkg/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/vcpkg/portfile.cmake -------------------------------------------------------------------------------- /sdk/storage/azure-storage-blobs/vcpkg/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-blobs/vcpkg/vcpkg.json -------------------------------------------------------------------------------- /sdk/storage/azure-storage-common/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-common/CHANGELOG.md -------------------------------------------------------------------------------- /sdk/storage/azure-storage-common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-common/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/storage/azure-storage-common/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-common/NOTICE.txt -------------------------------------------------------------------------------- /sdk/storage/azure-storage-common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-common/README.md -------------------------------------------------------------------------------- /sdk/storage/azure-storage-common/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-common/cgmanifest.json -------------------------------------------------------------------------------- /sdk/storage/azure-storage-common/inc/ApiViewSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-common/inc/ApiViewSettings.json -------------------------------------------------------------------------------- /sdk/storage/azure-storage-common/src/crypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-common/src/crypt.cpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-common/src/file_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-common/src/file_io.cpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-common/src/reliable_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-common/src/reliable_stream.cpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-common/src/xml_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-common/src/xml_wrapper.cpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-common/test/ut/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-common/test/ut/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/storage/azure-storage-common/test/ut/test_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-common/test/ut/test_base.cpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-common/test/ut/test_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-common/test/ut/test_base.hpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-common/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-common/vcpkg.json -------------------------------------------------------------------------------- /sdk/storage/azure-storage-common/vcpkg/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-common/vcpkg/Config.cmake.in -------------------------------------------------------------------------------- /sdk/storage/azure-storage-common/vcpkg/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-common/vcpkg/portfile.cmake -------------------------------------------------------------------------------- /sdk/storage/azure-storage-common/vcpkg/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-common/vcpkg/vcpkg.json -------------------------------------------------------------------------------- /sdk/storage/azure-storage-files-datalake/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-files-datalake/CHANGELOG.md -------------------------------------------------------------------------------- /sdk/storage/azure-storage-files-datalake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-files-datalake/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/storage/azure-storage-files-datalake/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-files-datalake/NOTICE.txt -------------------------------------------------------------------------------- /sdk/storage/azure-storage-files-datalake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-files-datalake/README.md -------------------------------------------------------------------------------- /sdk/storage/azure-storage-files-datalake/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-files-datalake/cgmanifest.json -------------------------------------------------------------------------------- /sdk/storage/azure-storage-files-datalake/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-files-datalake/vcpkg.json -------------------------------------------------------------------------------- /sdk/storage/azure-storage-files-datalake/vcpkg/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-files-datalake/vcpkg/vcpkg.json -------------------------------------------------------------------------------- /sdk/storage/azure-storage-files-shares/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-files-shares/CHANGELOG.md -------------------------------------------------------------------------------- /sdk/storage/azure-storage-files-shares/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-files-shares/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/storage/azure-storage-files-shares/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-files-shares/NOTICE.txt -------------------------------------------------------------------------------- /sdk/storage/azure-storage-files-shares/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-files-shares/README.md -------------------------------------------------------------------------------- /sdk/storage/azure-storage-files-shares/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-files-shares/cgmanifest.json -------------------------------------------------------------------------------- /sdk/storage/azure-storage-files-shares/swagger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-files-shares/swagger/README.md -------------------------------------------------------------------------------- /sdk/storage/azure-storage-files-shares/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-files-shares/vcpkg.json -------------------------------------------------------------------------------- /sdk/storage/azure-storage-files-shares/vcpkg/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-files-shares/vcpkg/vcpkg.json -------------------------------------------------------------------------------- /sdk/storage/azure-storage-queues/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-queues/CHANGELOG.md -------------------------------------------------------------------------------- /sdk/storage/azure-storage-queues/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-queues/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/storage/azure-storage-queues/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-queues/NOTICE.txt -------------------------------------------------------------------------------- /sdk/storage/azure-storage-queues/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-queues/README.md -------------------------------------------------------------------------------- /sdk/storage/azure-storage-queues/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-queues/cgmanifest.json -------------------------------------------------------------------------------- /sdk/storage/azure-storage-queues/inc/ApiViewSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-queues/inc/ApiViewSettings.json -------------------------------------------------------------------------------- /sdk/storage/azure-storage-queues/samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-queues/samples/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/storage/azure-storage-queues/src/queue_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-queues/src/queue_client.cpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-queues/src/queue_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-queues/src/queue_options.cpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-queues/src/queue_responses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-queues/src/queue_responses.cpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-queues/src/rest_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-queues/src/rest_client.cpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-queues/swagger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-queues/swagger/README.md -------------------------------------------------------------------------------- /sdk/storage/azure-storage-queues/test/ut/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-queues/test/ut/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/storage/azure-storage-queues/test/ut/macro_guard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-queues/test/ut/macro_guard.cpp -------------------------------------------------------------------------------- /sdk/storage/azure-storage-queues/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-queues/vcpkg.json -------------------------------------------------------------------------------- /sdk/storage/azure-storage-queues/vcpkg/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-queues/vcpkg/Config.cmake.in -------------------------------------------------------------------------------- /sdk/storage/azure-storage-queues/vcpkg/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-queues/vcpkg/portfile.cmake -------------------------------------------------------------------------------- /sdk/storage/azure-storage-queues/vcpkg/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/azure-storage-queues/vcpkg/vcpkg.json -------------------------------------------------------------------------------- /sdk/storage/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/ci.yml -------------------------------------------------------------------------------- /sdk/storage/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/faq.md -------------------------------------------------------------------------------- /sdk/storage/test-resources-post.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/test-resources-post.ps1 -------------------------------------------------------------------------------- /sdk/storage/test-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/storage/test-resources.json -------------------------------------------------------------------------------- /sdk/tables/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/tables/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/assets.json -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/CHANGELOG.md -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/NOTICE.txt -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/README.md -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/cgmanifest.json -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/inc/ApiViewSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/inc/ApiViewSettings.json -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/inc/azure/data/tables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/inc/azure/data/tables.hpp -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/samples/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/samples/README.md -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/src/models.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/src/models.cpp -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/src/private/serializers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/src/private/serializers.hpp -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/src/private/url_encode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/src/private/url_encode.hpp -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/src/private/xml_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/src/private/xml_wrapper.hpp -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/src/serializers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/src/serializers.cpp -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/src/table_clients.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/src/table_clients.cpp -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/src/xml_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/src/xml_wrapper.cpp -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/test/stress/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/test/stress/.helmignore -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/test/stress/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/test/stress/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/test/stress/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/test/stress/Chart.yaml -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/test/stress/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/test/stress/Dockerfile -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/test/stress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/test/stress/README.md -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/test/stress/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/test/stress/deploy.ps1 -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/test/ut/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/test/ut/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/test/ut/macro_guard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/test/ut/macro_guard.cpp -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/test/ut/serializers_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/test/ut/serializers_test.cpp -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/test/ut/serializers_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/test/ut/serializers_test.hpp -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/vcpkg.json -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/vcpkg/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/vcpkg/Config.cmake.in -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/vcpkg/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/vcpkg/portfile.cmake -------------------------------------------------------------------------------- /sdk/tables/azure-data-tables/vcpkg/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/azure-data-tables/vcpkg/vcpkg.json -------------------------------------------------------------------------------- /sdk/tables/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/ci.yml -------------------------------------------------------------------------------- /sdk/tables/test-resources-post.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/test-resources-post.ps1 -------------------------------------------------------------------------------- /sdk/tables/test-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/tables/test-resources.json -------------------------------------------------------------------------------- /sdk/template/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/template/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/template/azure-template/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/template/azure-template/CHANGELOG.md -------------------------------------------------------------------------------- /sdk/template/azure-template/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/template/azure-template/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/template/azure-template/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/template/azure-template/NOTICE.txt -------------------------------------------------------------------------------- /sdk/template/azure-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/template/azure-template/README.md -------------------------------------------------------------------------------- /sdk/template/azure-template/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/template/azure-template/cgmanifest.json -------------------------------------------------------------------------------- /sdk/template/azure-template/inc/ApiViewSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/template/azure-template/inc/ApiViewSettings.json -------------------------------------------------------------------------------- /sdk/template/azure-template/inc/azure/template.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/template/azure-template/inc/azure/template.hpp -------------------------------------------------------------------------------- /sdk/template/azure-template/inc/azure/template/rtti.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/template/azure-template/inc/azure/template/rtti.hpp -------------------------------------------------------------------------------- /sdk/template/azure-template/src/template_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/template/azure-template/src/template_client.cpp -------------------------------------------------------------------------------- /sdk/template/azure-template/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/template/azure-template/test/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/template/azure-template/test/ut/macro_guard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/template/azure-template/test/ut/macro_guard.cpp -------------------------------------------------------------------------------- /sdk/template/azure-template/test/ut/template_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/template/azure-template/test/ut/template_test.cpp -------------------------------------------------------------------------------- /sdk/template/azure-template/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/template/azure-template/vcpkg.json -------------------------------------------------------------------------------- /sdk/template/azure-template/vcpkg/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/template/azure-template/vcpkg/Config.cmake.in -------------------------------------------------------------------------------- /sdk/template/azure-template/vcpkg/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/template/azure-template/vcpkg/portfile.cmake -------------------------------------------------------------------------------- /sdk/template/azure-template/vcpkg/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/template/azure-template/vcpkg/vcpkg.json -------------------------------------------------------------------------------- /sdk/template/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/sdk/template/ci.yml -------------------------------------------------------------------------------- /tools/AzureVcpkg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/tools/AzureVcpkg.cmake -------------------------------------------------------------------------------- /vcpkg-custom-ports/openssl/install-pc-files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/vcpkg-custom-ports/openssl/install-pc-files.cmake -------------------------------------------------------------------------------- /vcpkg-custom-ports/openssl/openssl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/vcpkg-custom-ports/openssl/openssl.pc.in -------------------------------------------------------------------------------- /vcpkg-custom-ports/openssl/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/vcpkg-custom-ports/openssl/portfile.cmake -------------------------------------------------------------------------------- /vcpkg-custom-ports/openssl/unix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/vcpkg-custom-ports/openssl/unix/CMakeLists.txt -------------------------------------------------------------------------------- /vcpkg-custom-ports/openssl/unix/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/vcpkg-custom-ports/openssl/unix/portfile.cmake -------------------------------------------------------------------------------- /vcpkg-custom-ports/openssl/unix/remove-deps.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/vcpkg-custom-ports/openssl/unix/remove-deps.cmake -------------------------------------------------------------------------------- /vcpkg-custom-ports/openssl/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/vcpkg-custom-ports/openssl/usage -------------------------------------------------------------------------------- /vcpkg-custom-ports/openssl/uwp/EnableUWPSupport.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/vcpkg-custom-ports/openssl/uwp/EnableUWPSupport.patch -------------------------------------------------------------------------------- /vcpkg-custom-ports/openssl/uwp/make-openssl.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/vcpkg-custom-ports/openssl/uwp/make-openssl.bat -------------------------------------------------------------------------------- /vcpkg-custom-ports/openssl/uwp/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/vcpkg-custom-ports/openssl/uwp/portfile.cmake -------------------------------------------------------------------------------- /vcpkg-custom-ports/openssl/vcpkg-cmake-wrapper.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/vcpkg-custom-ports/openssl/vcpkg-cmake-wrapper.cmake.in -------------------------------------------------------------------------------- /vcpkg-custom-ports/openssl/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/vcpkg-custom-ports/openssl/vcpkg.json -------------------------------------------------------------------------------- /vcpkg-custom-ports/openssl/windows/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/vcpkg-custom-ports/openssl/windows/portfile.cmake -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-sdk-for-cpp/HEAD/vcpkg.json --------------------------------------------------------------------------------