├── .github ├── CODEOWNERS └── policies │ └── msgraph-sdk-design-branch-protection.yml ├── ArchitecturalConstraints.md ├── CODE_OF_CONDUCT.md ├── GraphClientFactory.md ├── GraphRequest.md ├── GraphResponse.md ├── LICENSE ├── Observability.md ├── README.md ├── Repositories.md ├── ResponseHandler.md ├── SECURITY.md ├── Versions.md ├── _config.yml ├── assets └── css │ └── style.scss ├── content ├── BatchRequestContent.md ├── BatchRequestContentCollection.md ├── BatchResponseContent.md ├── BatchResponseContentCollection.md ├── ContentArchitecturalConstraints.md ├── ErrorContent.md ├── MultipartContent.md ├── StreamingRequestContent.md └── StreamingResponseContent.md ├── images └── componentArch.png ├── middleware ├── AuthorizationHandler.md ├── BodyInspectionHandler.md ├── ChaosHandler.md ├── CompressionHandler.md ├── ConnectionPoolManager.md ├── DecompressionHandler.md ├── DeltaResponseHandler.md ├── HeadersInspectionHandler.md ├── LoggingHandler.md ├── LongRunningOperationHandler.md ├── ParametersNameDecodingHandler.md ├── RedirectHandler.md ├── RequestContext.md ├── RetryHandler.md ├── ServiceDiscoveryHandler.md ├── SunsetHandler.md ├── TelemetryHandler.md └── middleware.md ├── providers ├── AuthenticationProvider.md ├── LoggingProvider.md └── providers.md ├── raptor └── pipeline.md └── tasks ├── FileUploadTask.md └── PageIteratorTask.md /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/policies/msgraph-sdk-design-branch-protection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/.github/policies/msgraph-sdk-design-branch-protection.yml -------------------------------------------------------------------------------- /ArchitecturalConstraints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/ArchitecturalConstraints.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /GraphClientFactory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/GraphClientFactory.md -------------------------------------------------------------------------------- /GraphRequest.md: -------------------------------------------------------------------------------- 1 | # GraphRequest Object 2 | 3 | TBD -------------------------------------------------------------------------------- /GraphResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/GraphResponse.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/LICENSE -------------------------------------------------------------------------------- /Observability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/Observability.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/README.md -------------------------------------------------------------------------------- /Repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/Repositories.md -------------------------------------------------------------------------------- /ResponseHandler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/ResponseHandler.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/Versions.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/assets/css/style.scss -------------------------------------------------------------------------------- /content/BatchRequestContent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/content/BatchRequestContent.md -------------------------------------------------------------------------------- /content/BatchRequestContentCollection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/content/BatchRequestContentCollection.md -------------------------------------------------------------------------------- /content/BatchResponseContent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/content/BatchResponseContent.md -------------------------------------------------------------------------------- /content/BatchResponseContentCollection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/content/BatchResponseContentCollection.md -------------------------------------------------------------------------------- /content/ContentArchitecturalConstraints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/content/ContentArchitecturalConstraints.md -------------------------------------------------------------------------------- /content/ErrorContent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/content/ErrorContent.md -------------------------------------------------------------------------------- /content/MultipartContent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/content/MultipartContent.md -------------------------------------------------------------------------------- /content/StreamingRequestContent.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/StreamingResponseContent.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/componentArch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/images/componentArch.png -------------------------------------------------------------------------------- /middleware/AuthorizationHandler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/middleware/AuthorizationHandler.md -------------------------------------------------------------------------------- /middleware/BodyInspectionHandler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/middleware/BodyInspectionHandler.md -------------------------------------------------------------------------------- /middleware/ChaosHandler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/middleware/ChaosHandler.md -------------------------------------------------------------------------------- /middleware/CompressionHandler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/middleware/CompressionHandler.md -------------------------------------------------------------------------------- /middleware/ConnectionPoolManager.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleware/DecompressionHandler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/middleware/DecompressionHandler.md -------------------------------------------------------------------------------- /middleware/DeltaResponseHandler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/middleware/DeltaResponseHandler.md -------------------------------------------------------------------------------- /middleware/HeadersInspectionHandler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/middleware/HeadersInspectionHandler.md -------------------------------------------------------------------------------- /middleware/LoggingHandler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/middleware/LoggingHandler.md -------------------------------------------------------------------------------- /middleware/LongRunningOperationHandler.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /middleware/ParametersNameDecodingHandler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/middleware/ParametersNameDecodingHandler.md -------------------------------------------------------------------------------- /middleware/RedirectHandler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/middleware/RedirectHandler.md -------------------------------------------------------------------------------- /middleware/RequestContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/middleware/RequestContext.md -------------------------------------------------------------------------------- /middleware/RetryHandler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/middleware/RetryHandler.md -------------------------------------------------------------------------------- /middleware/ServiceDiscoveryHandler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/middleware/ServiceDiscoveryHandler.md -------------------------------------------------------------------------------- /middleware/SunsetHandler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/middleware/SunsetHandler.md -------------------------------------------------------------------------------- /middleware/TelemetryHandler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/middleware/TelemetryHandler.md -------------------------------------------------------------------------------- /middleware/middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/middleware/middleware.md -------------------------------------------------------------------------------- /providers/AuthenticationProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/providers/AuthenticationProvider.md -------------------------------------------------------------------------------- /providers/LoggingProvider.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /providers/providers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/providers/providers.md -------------------------------------------------------------------------------- /raptor/pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/raptor/pipeline.md -------------------------------------------------------------------------------- /tasks/FileUploadTask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/tasks/FileUploadTask.md -------------------------------------------------------------------------------- /tasks/PageIteratorTask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-design/HEAD/tasks/PageIteratorTask.md --------------------------------------------------------------------------------