gitextract_d9n50_wm/ ├── .github/ │ ├── CODEOWNERS │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── feature_request.md │ │ └── question-query-template.md │ ├── dependabot.yml │ └── workflows/ │ ├── broken-link-check.yml │ ├── markdown-link-check-config.json │ ├── schedule-current-link-check.yaml │ ├── sync-label-from-azsdk-repo.yml │ ├── update-docs.yaml │ └── update-properties-table-in-ms-docs.yaml ├── .gitignore ├── .mvn/ │ └── wrapper/ │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── .settings.xml ├── .springformat ├── .springjavaformatconfig ├── LICENSE ├── LICENSE-CODE ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── azure-spring-cloud-appconfiguration.md ├── docs/ │ ├── .vale-styles/ │ │ └── Microsoft/ │ │ ├── AMPM.yml │ │ ├── Accessibility.yml │ │ ├── Acronyms.yml │ │ ├── Adverbs.yml │ │ ├── Auto.yml │ │ ├── Avoid.yml │ │ ├── ComplexWords.yml │ │ ├── Contractions.yml │ │ ├── Dashes.yml │ │ ├── DateFormat.yml │ │ ├── DateNumbers.yml │ │ ├── DateOrder.yml │ │ ├── Ellipses.yml │ │ ├── FirstPerson.yml │ │ ├── Foreign.yml │ │ ├── Gender.yml │ │ ├── GenderBias.yml │ │ ├── GeneralURL.yml │ │ ├── HeadingAcronyms.yml │ │ ├── HeadingColons.yml │ │ ├── HeadingPunctuation.yml │ │ ├── Headings.yml │ │ ├── Hyphens.yml │ │ ├── Negative.yml │ │ ├── Ordinal.yml │ │ ├── OxfordComma.yml │ │ ├── Passive.yml │ │ ├── Percentages.yml │ │ ├── Quotes.yml │ │ ├── RangeFormat.yml │ │ ├── RangeTime.yml │ │ ├── Ranges.yml │ │ ├── Semicolon.yml │ │ ├── SentenceLength.yml │ │ ├── Spacing.yml │ │ ├── Suspended.yml │ │ ├── Terms.yml │ │ ├── URLFormat.yml │ │ ├── Units.yml │ │ ├── Vocab.yml │ │ ├── We.yml │ │ ├── Wordiness.yml │ │ └── meta.json │ ├── .vale.ini │ ├── README.adoc │ ├── generate-docs.sh │ ├── pom.xml │ └── src/ │ └── main/ │ ├── .gitignore │ └── asciidoc/ │ ├── _attributes.adoc │ ├── _configuration-properties-all.adoc │ ├── _configuration-properties-azure-active-directory-b2c.adoc │ ├── _configuration-properties-azure-active-directory.adoc │ ├── _configuration-properties-azure-app-configuration.adoc │ ├── _configuration-properties-azure-cosmos-db.adoc │ ├── _configuration-properties-azure-event-hubs.adoc │ ├── _configuration-properties-azure-key-vault-certificates.adoc │ ├── _configuration-properties-azure-key-vault-secrets.adoc │ ├── _configuration-properties-azure-key-vault.adoc │ ├── _configuration-properties-azure-service-bus-jms.adoc │ ├── _configuration-properties-azure-service-bus.adoc │ ├── _configuration-properties-azure-storage-blob.adoc │ ├── _configuration-properties-azure-storage-file-share.adoc │ ├── _configuration-properties-azure-storage-queue.adoc │ ├── _configuration-properties-azure-storage.adoc │ ├── _configuration-properties-global.adoc │ ├── _known-issues.adoc │ ├── _migration-guide-for-4.0.adoc │ ├── appendix.adoc │ ├── authentication.adoc │ ├── auto-configure-azure-sdk-clients.adoc │ ├── configuration-properties.adoc │ ├── configuration.adoc │ ├── create-and-configure-managed-identity.adoc │ ├── deploy-applications-to-azure-hosting-environments.adoc │ ├── docinfo.html │ ├── getting-help.adoc │ ├── getting-started.adoc │ ├── ghpages.sh │ ├── index.adoc │ ├── intro.adoc │ ├── kafka-support.adoc │ ├── legal.adoc │ ├── migration-guide-for-4.0.adoc │ ├── production-ready.adoc │ ├── redis-support.adoc │ ├── resource-handling.adoc │ ├── resource-manager.adoc │ ├── secret-management.adoc │ ├── spring-cloud-stream-support.adoc │ ├── spring-data-support.adoc │ ├── spring-integration-support.adoc │ ├── spring-jms-support.adoc │ ├── spring-native-support.adoc │ ├── spring-security-support.adoc │ ├── version-information.adoc │ └── whats-new-4.0.adoc ├── mvnw ├── mvnw.cmd ├── pom.xml └── spring-cloud-azure-markdown-appdendix-generator/ ├── pom.xml └── src/ ├── main/ │ └── java/ │ └── com/ │ └── azure/ │ └── spring/ │ └── cloud/ │ └── internal/ │ └── Main.java └── test/ ├── java/ │ └── com/ │ └── azure/ │ └── spring/ │ └── cloud/ │ └── internal/ │ ├── GeneratorTests.java │ └── MainTests.java └── resources/ ├── configuration-properties-output.md └── with-azure-in-name.json