├── .gitignore ├── LICENSE ├── README.md ├── accessorys ├── PicUploaderHelper │ ├── PicUploaderHelper.alfredworkflow │ ├── PicUploaderHelper.py │ ├── config.json │ ├── config_win.json │ ├── dump-clipboard-jpg.ps1 │ ├── dump-clipboard-png.ps1 │ ├── generatesh.sh │ └── notification.ps1 ├── add-right-click-menu-utf8.bat ├── add-right-click-menu.bat ├── api.picuploader.com-key.pem └── api.picuploader.com.pem ├── auth ├── AzureRedirect.php ├── DropboxRedirect.php ├── GoogledriveRedirect.php ├── ImgurRedirect.php └── OnedriveRedirect.php ├── common └── EasyImage.php ├── composer.json ├── composer.lock ├── config └── config.php ├── dashboard.php ├── favicon.ico ├── index.php ├── settings ├── Controller.php ├── DbModel.php ├── HistoryController.php ├── HistoryModel.php ├── PicUploader-mysql.sql ├── PicUploader-sqlite3.sql ├── PicUploader-tpl.db ├── SQLite.php ├── SettingController.php ├── dispatch.php └── history.php ├── static ├── ImageViewer │ ├── MIT-LICENSE.txt │ ├── README.md │ ├── bower.json │ ├── demo │ │ ├── container-mode.html │ │ ├── full-screen.html │ │ ├── image-mode.html │ │ ├── images │ │ │ ├── 1.jpg │ │ │ ├── 1_big.jpg │ │ │ ├── 2.jpg │ │ │ ├── 2_big.jpg │ │ │ ├── 3.jpg │ │ │ ├── 3_big.jpg │ │ │ ├── 4.jpg │ │ │ ├── 4_big.jpg │ │ │ ├── left.svg │ │ │ └── right.svg │ │ └── lib │ │ │ └── jquery-1.11.3.min.js │ ├── imageviewer.css │ ├── imageviewer.jpg │ ├── imageviewer.js │ └── imageviewer.min.js ├── Spectrum-ColorPicker │ ├── ReadMe.txt │ ├── spectrum.css │ └── spectrum.js ├── cacert.pem ├── css │ └── dashboard.css ├── font-awesome-4.7.0 │ ├── HELP-US-OUT.txt │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── less │ │ ├── animated.less │ │ ├── bordered-pulled.less │ │ ├── core.less │ │ ├── fixed-width.less │ │ ├── font-awesome.less │ │ ├── icons.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── mixins.less │ │ ├── path.less │ │ ├── rotated-flipped.less │ │ ├── screen-reader.less │ │ ├── stacked.less │ │ └── variables.less │ └── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _path.scss │ │ ├── _rotated-flipped.scss │ │ ├── _screen-reader.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ └── font-awesome.scss ├── images │ ├── PicUploader.jpg │ ├── PicUploader.png │ ├── clippy.svg │ └── upload.jpg ├── js │ ├── clipboard.js │ ├── common.js │ ├── dashboard.js │ ├── history.js │ ├── jquery.min.js │ └── paste.image.js ├── rgbaColorPicker │ ├── rgbaColorPicker.css │ ├── rgbaColorPicker.js │ └── test.html └── watermark │ ├── jdchj.ttf │ └── watermark.png ├── thirdpart ├── eSDK_Storage_OBS_V3.1.3_PHP │ ├── Obs │ │ ├── Internal │ │ │ ├── Common │ │ │ │ ├── CheckoutStream.php │ │ │ │ ├── ITransform.php │ │ │ │ ├── Model.php │ │ │ │ ├── ObsTransform.php │ │ │ │ ├── SchemaFormatter.php │ │ │ │ ├── SdkCurlFactory.php │ │ │ │ ├── SdkStreamHandler.php │ │ │ │ ├── ToArrayInterface.php │ │ │ │ └── V2Transform.php │ │ │ ├── GetResponseTrait.php │ │ │ ├── Resource │ │ │ │ ├── Constants.php │ │ │ │ ├── OBSConstants.php │ │ │ │ ├── OBSRequestResource.php │ │ │ │ ├── V2Constants.php │ │ │ │ └── V2RequestResource.php │ │ │ ├── SendRequestTrait.php │ │ │ └── Signature │ │ │ │ ├── AbstractSignature.php │ │ │ │ ├── DefaultSignature.php │ │ │ │ ├── SignatureInterface.php │ │ │ │ └── V4Signature.php │ │ ├── Log │ │ │ ├── ObsConfig.php │ │ │ └── ObsLog.php │ │ ├── ObsClient.php │ │ └── ObsException.php │ └── obs-autoloader.php ├── ks3-php-sdk │ ├── .gitignore │ ├── Ks3Client.class.php │ ├── Ks3EncryptionClient.class.php │ ├── config │ │ └── Consts.php │ ├── core │ │ ├── API.php │ │ ├── Builders.php │ │ ├── Handlers.php │ │ ├── Headers.php │ │ ├── Ks3Request.class.php │ │ ├── Logger.php │ │ ├── MessageHolder.php │ │ ├── Signers.php │ │ └── Utils.class.php │ ├── encryption │ │ ├── EncryptionCallBack.php │ │ ├── EncryptionHandlers.php │ │ └── EncryptionUtil.php │ ├── exceptions │ │ └── Exceptions.php │ ├── lib │ │ └── RequestCore.class.php │ ├── readme.md │ ├── samples │ │ ├── FormUpload.php │ │ ├── Samples.php │ │ ├── TestEncryptionClientFile.php │ │ ├── TestEncryptionClientMeta.php │ │ └── secret.key │ ├── unit │ │ ├── PUnit.php │ │ ├── Test.php │ │ ├── TestUtil.php │ │ ├── cache │ │ │ └── test_file │ │ └── secret.key │ └── 更新日志.txt └── ufile-phpsdk │ ├── CHANGELOG.md │ └── v1 │ ├── demo │ ├── delete.php │ ├── get.php │ ├── multipart.php │ ├── mupload.php │ ├── put.php │ └── uploadhit.php │ └── ucloud │ ├── conf.php │ ├── digest.php │ ├── http.php │ ├── mimetypes.php │ ├── proxy.php │ └── utils.php ├── uploader ├── Common.php ├── Upload.php ├── UploadAliyun.php ├── UploadAzure.php ├── UploadBaidu.php ├── UploadChevereto.php ├── UploadCloudinary.php ├── UploadCodingnet.php ├── UploadDropbox.php ├── UploadGitee.php ├── UploadGithub.php ├── UploadGitlab.php ├── UploadGoogledrive.php ├── UploadHuawei.php ├── UploadImgur.php ├── UploadJd.php ├── UploadJianguoyun.php ├── UploadKs3.php ├── UploadLocal.php ├── UploadMinio.php ├── UploadNetease.php ├── UploadNextcloud.php ├── UploadOnedrive.php ├── UploadQingcloud.php ├── UploadQiniu.php ├── UploadS3.php ├── UploadSftp.php ├── UploadSmms.php ├── UploadTencent.php ├── UploadTusu.php ├── UploadUcloud.php ├── UploadUpyun.php └── UploadWeibo.php └── vendor ├── aliyuncs └── oss-sdk-php │ ├── .coveralls.yml │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README-CN.md │ ├── README.md │ ├── autoload.php │ ├── build-phar.sh │ ├── composer.json │ ├── example.jpg │ ├── index.php │ ├── phpunit.xml │ ├── samples │ ├── Bucket.php │ ├── BucketCname.php │ ├── BucketCors.php │ ├── BucketEncryption.php │ ├── BucketLifecycle.php │ ├── BucketLogging.php │ ├── BucketPayment.php │ ├── BucketPolicy.php │ ├── BucketReferer.php │ ├── BucketStat.php │ ├── BucketTags.php │ ├── BucketTransferAcceleration.php │ ├── BucketVersion.php │ ├── BucketWebsite.php │ ├── BucketWorm.php │ ├── Callback.php │ ├── Common.php │ ├── Config.php │ ├── CredentialsPhp.php │ ├── CredentialsProvider.php │ ├── Image.php │ ├── LiveChannel.php │ ├── MultipartUpload.php │ ├── Object.php │ ├── ObjectTagging.php │ ├── RunAll.php │ └── Signature.php │ ├── src │ └── OSS │ │ ├── Core │ │ ├── MimeTypes.php │ │ ├── OssException.php │ │ └── OssUtil.php │ │ ├── Credentials │ │ ├── Credentials.php │ │ ├── CredentialsProvider.php │ │ └── StaticCredentialsProvider.php │ │ ├── Http │ │ ├── LICENSE │ │ ├── RequestCore.php │ │ ├── RequestCore_Exception.php │ │ └── ResponseCore.php │ │ ├── Model │ │ ├── BucketInfo.php │ │ ├── BucketListInfo.php │ │ ├── BucketStat.php │ │ ├── CnameConfig.php │ │ ├── CnameTokenInfo.php │ │ ├── CorsConfig.php │ │ ├── CorsRule.php │ │ ├── DeleteMarkerInfo.php │ │ ├── DeleteObjectInfo.php │ │ ├── DeletedObjectInfo.php │ │ ├── ExtendWormConfig.php │ │ ├── GetLiveChannelHistory.php │ │ ├── GetLiveChannelInfo.php │ │ ├── GetLiveChannelStatus.php │ │ ├── InitiateWormConfig.php │ │ ├── LifecycleAction.php │ │ ├── LifecycleConfig.php │ │ ├── LifecycleRule.php │ │ ├── ListMultipartUploadInfo.php │ │ ├── ListPartsInfo.php │ │ ├── LiveChannelConfig.php │ │ ├── LiveChannelHistory.php │ │ ├── LiveChannelInfo.php │ │ ├── LiveChannelListInfo.php │ │ ├── LoggingConfig.php │ │ ├── ObjectInfo.php │ │ ├── ObjectListInfo.php │ │ ├── ObjectListInfoV2.php │ │ ├── ObjectVersionInfo.php │ │ ├── ObjectVersionListInfo.php │ │ ├── PartInfo.php │ │ ├── PrefixInfo.php │ │ ├── RefererConfig.php │ │ ├── RequestPaymentConfig.php │ │ ├── RestoreConfig.php │ │ ├── ServerSideEncryptionConfig.php │ │ ├── StorageCapacityConfig.php │ │ ├── Tag.php │ │ ├── TaggingConfig.php │ │ ├── TransferAccelerationConfig.php │ │ ├── UploadInfo.php │ │ ├── VersioningConfig.php │ │ ├── WebsiteConfig.php │ │ ├── WormConfig.php │ │ └── XmlConfig.php │ │ ├── OssClient.php │ │ └── Result │ │ ├── AclResult.php │ │ ├── AppendResult.php │ │ ├── BodyResult.php │ │ ├── CallbackResult.php │ │ ├── CopyObjectResult.php │ │ ├── CreateBucketCnameTokenResult.php │ │ ├── DeleteObjectVersionsResult.php │ │ ├── DeleteObjectsResult.php │ │ ├── ExistResult.php │ │ ├── GetBucketCnameTokenResult.php │ │ ├── GetBucketEncryptionResult.php │ │ ├── GetBucketInfoResult.php │ │ ├── GetBucketRequestPaymentResult.php │ │ ├── GetBucketStatResult.php │ │ ├── GetBucketTagsResult.php │ │ ├── GetBucketTransferAccelerationResult.php │ │ ├── GetBucketVersioningResult.php │ │ ├── GetBucketWormResult.php │ │ ├── GetCnameResult.php │ │ ├── GetCorsResult.php │ │ ├── GetLifecycleResult.php │ │ ├── GetLiveChannelHistoryResult.php │ │ ├── GetLiveChannelInfoResult.php │ │ ├── GetLiveChannelStatusResult.php │ │ ├── GetLocationResult.php │ │ ├── GetLoggingResult.php │ │ ├── GetRefererResult.php │ │ ├── GetStorageCapacityResult.php │ │ ├── GetWebsiteResult.php │ │ ├── HeaderResult.php │ │ ├── InitiateBucketWormResult.php │ │ ├── InitiateMultipartUploadResult.php │ │ ├── ListBucketsResult.php │ │ ├── ListLiveChannelResult.php │ │ ├── ListMultipartUploadResult.php │ │ ├── ListObjectVersionsResult.php │ │ ├── ListObjectsResult.php │ │ ├── ListObjectsV2Result.php │ │ ├── ListPartsResult.php │ │ ├── PutLiveChannelResult.php │ │ ├── PutSetDeleteResult.php │ │ ├── Result.php │ │ ├── SymlinkResult.php │ │ └── UploadPartResult.php │ └── tests │ └── OSS │ └── Tests │ ├── AclResultTest.php │ ├── BodyResultTest.php │ ├── BucketCnameTest.php │ ├── BucketInfoTest.php │ ├── BucketLiveChannelTest.php │ ├── CallbackTest.php │ ├── CnameConfigTest.php │ ├── CnameTokenInfoTest.php │ ├── Common.php │ ├── ContentTypeTest.php │ ├── CopyObjectResult.php │ ├── CorsConfigTest.php │ ├── DeleteObjectVersionsResultTest.php │ ├── ExistResultTest.php │ ├── GetBucketEncryptionResultTest.php │ ├── GetBucketRequestPaymentResultTest.php │ ├── GetBucketStatResultTest.php │ ├── GetBucketTagsResultTest.php │ ├── GetBucketTransferAccelerationResultTest.php │ ├── GetBucketWormResultTest.php │ ├── GetCorsResultTest.php │ ├── GetLifecycleResultTest.php │ ├── GetLoggingResultTest.php │ ├── GetRefererResultTest.php │ ├── GetWebsiteResultTest.php │ ├── HeaderResultTest.php │ ├── HttpTest.php │ ├── InitiateMultipartUploadResultTest.php │ ├── LifecycleConfigTest.php │ ├── ListBucketsResultTest.php │ ├── ListMultipartUploadResultTest.php │ ├── ListObjectVersionsResultTest.php │ ├── ListObjectsResultTest.php │ ├── ListObjectsV2ResultTest.php │ ├── ListPartsResultTest.php │ ├── LiveChannelXmlTest.php │ ├── LoggingConfigTest.php │ ├── MimeTypesTest.php │ ├── ObjectAclTest.php │ ├── OssClientBucketCnameTest.php │ ├── OssClientBucketCorsTest.php │ ├── OssClientBucketEncryptionTest.php │ ├── OssClientBucketInfoTest.php │ ├── OssClientBucketLifecycleTest.php │ ├── OssClientBucketLoggingTest.php │ ├── OssClientBucketPolicyTest.php │ ├── OssClientBucketRefererTest.php │ ├── OssClientBucketRequestPaymentTest.php │ ├── OssClientBucketStatTestTest.php │ ├── OssClientBucketStorageCapacityTest.php │ ├── OssClientBucketTagsTest.php │ ├── OssClientBucketTest.php │ ├── OssClientBucketTransferAccelerationTest.php │ ├── OssClientBucketVersioningTest.php │ ├── OssClientBucketWebsiteTest.php │ ├── OssClientBucketWormTest.php │ ├── OssClientImageTest.php │ ├── OssClientListObjectsTest.php │ ├── OssClientListObjectsV2Test.php │ ├── OssClientMultipartUploadTest.php │ ├── OssClientObjectRequestPaymentTest.php │ ├── OssClientObjectTaggingTest.php │ ├── OssClientObjectTest.php │ ├── OssClientObjectVersioningTest.php │ ├── OssClientRestoreObjectTest.php │ ├── OssClientSignatureTest.php │ ├── OssClientTest.php │ ├── OssExceptionTest.php │ ├── OssTrafficLimitTest.php │ ├── OssUtilTest.php │ ├── PutSetDeleteResultTest.php │ ├── RefererConfigTest.php │ ├── StorageCapacityConfigTest.php │ ├── StorageCapacityTest.php │ ├── SymlinkTest.php │ ├── TestOssClientBase.php │ ├── TransferAccelerationConfigTest.php │ ├── UploadPartResultTest.php │ └── WebsiteConfigTest.php ├── autoload.php ├── aws ├── aws-crt-php │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── composer.json │ └── src │ │ └── AWS │ │ └── CRT │ │ ├── Auth │ │ ├── AwsCredentials.php │ │ ├── CredentialsProvider.php │ │ ├── Signable.php │ │ ├── SignatureType.php │ │ ├── SignedBodyHeaderType.php │ │ ├── Signing.php │ │ ├── SigningAlgorithm.php │ │ ├── SigningConfigAWS.php │ │ ├── SigningResult.php │ │ └── StaticCredentialsProvider.php │ │ ├── CRT.php │ │ ├── HTTP │ │ ├── Headers.php │ │ ├── Message.php │ │ ├── Request.php │ │ └── Response.php │ │ ├── IO │ │ ├── EventLoopGroup.php │ │ └── InputStream.php │ │ ├── Internal │ │ ├── Encoding.php │ │ └── Extension.php │ │ ├── Log.php │ │ ├── NativeResource.php │ │ └── Options.php └── aws-sdk-php │ ├── CODE_OF_CONDUCT.md │ ├── CRT_INSTRUCTIONS.md │ ├── LICENSE │ ├── NOTICE │ ├── THIRD-PARTY-LICENSES │ ├── composer.json │ └── src │ ├── ACMPCA │ ├── ACMPCAClient.php │ └── Exception │ │ └── ACMPCAException.php │ ├── ARCZonalShift │ ├── ARCZonalShiftClient.php │ └── Exception │ │ └── ARCZonalShiftException.php │ ├── AbstractConfigurationProvider.php │ ├── AccessAnalyzer │ ├── AccessAnalyzerClient.php │ └── Exception │ │ └── AccessAnalyzerException.php │ ├── Account │ ├── AccountClient.php │ └── Exception │ │ └── AccountException.php │ ├── Acm │ ├── AcmClient.php │ └── Exception │ │ └── AcmException.php │ ├── AlexaForBusiness │ ├── AlexaForBusinessClient.php │ └── Exception │ │ └── AlexaForBusinessException.php │ ├── Amplify │ ├── AmplifyClient.php │ └── Exception │ │ └── AmplifyException.php │ ├── AmplifyBackend │ ├── AmplifyBackendClient.php │ └── Exception │ │ └── AmplifyBackendException.php │ ├── AmplifyUIBuilder │ ├── AmplifyUIBuilderClient.php │ └── Exception │ │ └── AmplifyUIBuilderException.php │ ├── Api │ ├── AbstractModel.php │ ├── ApiProvider.php │ ├── DateTimeResult.php │ ├── DocModel.php │ ├── ErrorParser │ │ ├── AbstractErrorParser.php │ │ ├── JsonParserTrait.php │ │ ├── JsonRpcErrorParser.php │ │ ├── RestJsonErrorParser.php │ │ └── XmlErrorParser.php │ ├── ListShape.php │ ├── MapShape.php │ ├── Operation.php │ ├── Parser │ │ ├── AbstractParser.php │ │ ├── AbstractRestParser.php │ │ ├── Crc32ValidatingParser.php │ │ ├── DecodingEventStreamIterator.php │ │ ├── EventParsingIterator.php │ │ ├── Exception │ │ │ └── ParserException.php │ │ ├── JsonParser.php │ │ ├── JsonRpcParser.php │ │ ├── MetadataParserTrait.php │ │ ├── PayloadParserTrait.php │ │ ├── QueryParser.php │ │ ├── RestJsonParser.php │ │ ├── RestXmlParser.php │ │ └── XmlParser.php │ ├── Serializer │ │ ├── Ec2ParamBuilder.php │ │ ├── JsonBody.php │ │ ├── JsonRpcSerializer.php │ │ ├── QueryParamBuilder.php │ │ ├── QuerySerializer.php │ │ ├── RestJsonSerializer.php │ │ ├── RestSerializer.php │ │ ├── RestXmlSerializer.php │ │ └── XmlBody.php │ ├── Service.php │ ├── Shape.php │ ├── ShapeMap.php │ ├── StructureShape.php │ ├── TimestampShape.php │ └── Validator.php │ ├── ApiGateway │ ├── ApiGatewayClient.php │ └── Exception │ │ └── ApiGatewayException.php │ ├── ApiGatewayManagementApi │ ├── ApiGatewayManagementApiClient.php │ └── Exception │ │ └── ApiGatewayManagementApiException.php │ ├── ApiGatewayV2 │ ├── ApiGatewayV2Client.php │ └── Exception │ │ └── ApiGatewayV2Exception.php │ ├── AppConfig │ ├── AppConfigClient.php │ └── Exception │ │ └── AppConfigException.php │ ├── AppConfigData │ ├── AppConfigDataClient.php │ └── Exception │ │ └── AppConfigDataException.php │ ├── AppIntegrationsService │ ├── AppIntegrationsServiceClient.php │ └── Exception │ │ └── AppIntegrationsServiceException.php │ ├── AppMesh │ ├── AppMeshClient.php │ └── Exception │ │ └── AppMeshException.php │ ├── AppRegistry │ ├── AppRegistryClient.php │ └── Exception │ │ └── AppRegistryException.php │ ├── AppRunner │ ├── AppRunnerClient.php │ └── Exception │ │ └── AppRunnerException.php │ ├── AppSync │ ├── AppSyncClient.php │ └── Exception │ │ └── AppSyncException.php │ ├── Appflow │ ├── AppflowClient.php │ └── Exception │ │ └── AppflowException.php │ ├── ApplicationAutoScaling │ ├── ApplicationAutoScalingClient.php │ └── Exception │ │ └── ApplicationAutoScalingException.php │ ├── ApplicationCostProfiler │ ├── ApplicationCostProfilerClient.php │ └── Exception │ │ └── ApplicationCostProfilerException.php │ ├── ApplicationDiscoveryService │ ├── ApplicationDiscoveryServiceClient.php │ └── Exception │ │ └── ApplicationDiscoveryServiceException.php │ ├── ApplicationInsights │ ├── ApplicationInsightsClient.php │ └── Exception │ │ └── ApplicationInsightsException.php │ ├── Appstream │ ├── AppstreamClient.php │ └── Exception │ │ └── AppstreamException.php │ ├── Arn │ ├── AccessPointArn.php │ ├── AccessPointArnInterface.php │ ├── Arn.php │ ├── ArnInterface.php │ ├── ArnParser.php │ ├── Exception │ │ └── InvalidArnException.php │ ├── ObjectLambdaAccessPointArn.php │ ├── ResourceTypeAndIdTrait.php │ └── S3 │ │ ├── AccessPointArn.php │ │ ├── BucketArnInterface.php │ │ ├── MultiRegionAccessPointArn.php │ │ ├── OutpostsAccessPointArn.php │ │ ├── OutpostsArnInterface.php │ │ └── OutpostsBucketArn.php │ ├── Athena │ ├── AthenaClient.php │ └── Exception │ │ └── AthenaException.php │ ├── AuditManager │ ├── AuditManagerClient.php │ └── Exception │ │ └── AuditManagerException.php │ ├── AugmentedAIRuntime │ ├── AugmentedAIRuntimeClient.php │ └── Exception │ │ └── AugmentedAIRuntimeException.php │ ├── AutoScaling │ ├── AutoScalingClient.php │ └── Exception │ │ └── AutoScalingException.php │ ├── AutoScalingPlans │ ├── AutoScalingPlansClient.php │ └── Exception │ │ └── AutoScalingPlansException.php │ ├── AwsClient.php │ ├── AwsClientInterface.php │ ├── AwsClientTrait.php │ ├── Backup │ ├── BackupClient.php │ └── Exception │ │ └── BackupException.php │ ├── BackupGateway │ ├── BackupGatewayClient.php │ └── Exception │ │ └── BackupGatewayException.php │ ├── BackupStorage │ ├── BackupStorageClient.php │ └── Exception │ │ └── BackupStorageException.php │ ├── Batch │ ├── BatchClient.php │ └── Exception │ │ └── BatchException.php │ ├── BillingConductor │ ├── BillingConductorClient.php │ └── Exception │ │ └── BillingConductorException.php │ ├── Braket │ ├── BraketClient.php │ └── Exception │ │ └── BraketException.php │ ├── Budgets │ ├── BudgetsClient.php │ └── Exception │ │ └── BudgetsException.php │ ├── CacheInterface.php │ ├── Chime │ ├── ChimeClient.php │ └── Exception │ │ └── ChimeException.php │ ├── ChimeSDKIdentity │ ├── ChimeSDKIdentityClient.php │ └── Exception │ │ └── ChimeSDKIdentityException.php │ ├── ChimeSDKMediaPipelines │ ├── ChimeSDKMediaPipelinesClient.php │ └── Exception │ │ └── ChimeSDKMediaPipelinesException.php │ ├── ChimeSDKMeetings │ ├── ChimeSDKMeetingsClient.php │ └── Exception │ │ └── ChimeSDKMeetingsException.php │ ├── ChimeSDKMessaging │ ├── ChimeSDKMessagingClient.php │ └── Exception │ │ └── ChimeSDKMessagingException.php │ ├── ChimeSDKVoice │ ├── ChimeSDKVoiceClient.php │ └── Exception │ │ └── ChimeSDKVoiceException.php │ ├── CleanRooms │ ├── CleanRoomsClient.php │ └── Exception │ │ └── CleanRoomsException.php │ ├── ClientResolver.php │ ├── ClientSideMonitoring │ ├── AbstractMonitoringMiddleware.php │ ├── ApiCallAttemptMonitoringMiddleware.php │ ├── ApiCallMonitoringMiddleware.php │ ├── Configuration.php │ ├── ConfigurationInterface.php │ ├── ConfigurationProvider.php │ ├── Exception │ │ └── ConfigurationException.php │ └── MonitoringMiddlewareInterface.php │ ├── Cloud9 │ ├── Cloud9Client.php │ └── Exception │ │ └── Cloud9Exception.php │ ├── CloudControlApi │ ├── CloudControlApiClient.php │ └── Exception │ │ └── CloudControlApiException.php │ ├── CloudDirectory │ ├── CloudDirectoryClient.php │ └── Exception │ │ └── CloudDirectoryException.php │ ├── CloudFormation │ ├── CloudFormationClient.php │ └── Exception │ │ └── CloudFormationException.php │ ├── CloudFront │ ├── CloudFrontClient.php │ ├── CookieSigner.php │ ├── Exception │ │ └── CloudFrontException.php │ ├── Signer.php │ └── UrlSigner.php │ ├── CloudHSMV2 │ ├── CloudHSMV2Client.php │ └── Exception │ │ └── CloudHSMV2Exception.php │ ├── CloudHsm │ ├── CloudHsmClient.php │ └── Exception │ │ └── CloudHsmException.php │ ├── CloudSearch │ ├── CloudSearchClient.php │ └── Exception │ │ └── CloudSearchException.php │ ├── CloudSearchDomain │ ├── CloudSearchDomainClient.php │ └── Exception │ │ └── CloudSearchDomainException.php │ ├── CloudTrail │ ├── CloudTrailClient.php │ ├── Exception │ │ └── CloudTrailException.php │ ├── LogFileIterator.php │ ├── LogFileReader.php │ └── LogRecordIterator.php │ ├── CloudTrailData │ ├── CloudTrailDataClient.php │ └── Exception │ │ └── CloudTrailDataException.php │ ├── CloudWatch │ ├── CloudWatchClient.php │ └── Exception │ │ └── CloudWatchException.php │ ├── CloudWatchEvents │ ├── CloudWatchEventsClient.php │ └── Exception │ │ └── CloudWatchEventsException.php │ ├── CloudWatchEvidently │ ├── CloudWatchEvidentlyClient.php │ └── Exception │ │ └── CloudWatchEvidentlyException.php │ ├── CloudWatchLogs │ ├── CloudWatchLogsClient.php │ └── Exception │ │ └── CloudWatchLogsException.php │ ├── CloudWatchRUM │ ├── CloudWatchRUMClient.php │ └── Exception │ │ └── CloudWatchRUMException.php │ ├── CodeArtifact │ ├── CodeArtifactClient.php │ └── Exception │ │ └── CodeArtifactException.php │ ├── CodeBuild │ ├── CodeBuildClient.php │ └── Exception │ │ └── CodeBuildException.php │ ├── CodeCatalyst │ ├── CodeCatalystClient.php │ └── Exception │ │ └── CodeCatalystException.php │ ├── CodeCommit │ ├── CodeCommitClient.php │ └── Exception │ │ └── CodeCommitException.php │ ├── CodeDeploy │ ├── CodeDeployClient.php │ └── Exception │ │ └── CodeDeployException.php │ ├── CodeGuruProfiler │ ├── CodeGuruProfilerClient.php │ └── Exception │ │ └── CodeGuruProfilerException.php │ ├── CodeGuruReviewer │ ├── CodeGuruReviewerClient.php │ └── Exception │ │ └── CodeGuruReviewerException.php │ ├── CodePipeline │ ├── CodePipelineClient.php │ └── Exception │ │ └── CodePipelineException.php │ ├── CodeStar │ ├── CodeStarClient.php │ └── Exception │ │ └── CodeStarException.php │ ├── CodeStarNotifications │ ├── CodeStarNotificationsClient.php │ └── Exception │ │ └── CodeStarNotificationsException.php │ ├── CodeStarconnections │ ├── CodeStarconnectionsClient.php │ └── Exception │ │ └── CodeStarconnectionsException.php │ ├── CognitoIdentity │ ├── CognitoIdentityClient.php │ ├── CognitoIdentityProvider.php │ └── Exception │ │ └── CognitoIdentityException.php │ ├── CognitoIdentityProvider │ ├── CognitoIdentityProviderClient.php │ └── Exception │ │ └── CognitoIdentityProviderException.php │ ├── CognitoSync │ ├── CognitoSyncClient.php │ └── Exception │ │ └── CognitoSyncException.php │ ├── Command.php │ ├── CommandInterface.php │ ├── CommandPool.php │ ├── Comprehend │ ├── ComprehendClient.php │ └── Exception │ │ └── ComprehendException.php │ ├── ComprehendMedical │ ├── ComprehendMedicalClient.php │ └── Exception │ │ └── ComprehendMedicalException.php │ ├── ComputeOptimizer │ ├── ComputeOptimizerClient.php │ └── Exception │ │ └── ComputeOptimizerException.php │ ├── ConfigService │ ├── ConfigServiceClient.php │ └── Exception │ │ └── ConfigServiceException.php │ ├── ConfigurationProviderInterface.php │ ├── Connect │ ├── ConnectClient.php │ └── Exception │ │ └── ConnectException.php │ ├── ConnectCampaignService │ ├── ConnectCampaignServiceClient.php │ └── Exception │ │ └── ConnectCampaignServiceException.php │ ├── ConnectCases │ ├── ConnectCasesClient.php │ └── Exception │ │ └── ConnectCasesException.php │ ├── ConnectContactLens │ ├── ConnectContactLensClient.php │ └── Exception │ │ └── ConnectContactLensException.php │ ├── ConnectParticipant │ ├── ConnectParticipantClient.php │ └── Exception │ │ └── ConnectParticipantException.php │ ├── ConnectWisdomService │ ├── ConnectWisdomServiceClient.php │ └── Exception │ │ └── ConnectWisdomServiceException.php │ ├── ControlTower │ ├── ControlTowerClient.php │ └── Exception │ │ └── ControlTowerException.php │ ├── CostExplorer │ ├── CostExplorerClient.php │ └── Exception │ │ └── CostExplorerException.php │ ├── CostandUsageReportService │ ├── CostandUsageReportServiceClient.php │ └── Exception │ │ └── CostandUsageReportServiceException.php │ ├── Credentials │ ├── AssumeRoleCredentialProvider.php │ ├── AssumeRoleWithWebIdentityCredentialProvider.php │ ├── CredentialProvider.php │ ├── Credentials.php │ ├── CredentialsInterface.php │ ├── EcsCredentialProvider.php │ └── InstanceProfileProvider.php │ ├── Crypto │ ├── AbstractCryptoClient.php │ ├── AbstractCryptoClientV2.php │ ├── AesDecryptingStream.php │ ├── AesEncryptingStream.php │ ├── AesGcmDecryptingStream.php │ ├── AesGcmEncryptingStream.php │ ├── AesStreamInterface.php │ ├── AesStreamInterfaceV2.php │ ├── Cipher │ │ ├── Cbc.php │ │ ├── CipherBuilderTrait.php │ │ └── CipherMethod.php │ ├── DecryptionTrait.php │ ├── DecryptionTraitV2.php │ ├── EncryptionTrait.php │ ├── EncryptionTraitV2.php │ ├── KmsMaterialsProvider.php │ ├── KmsMaterialsProviderV2.php │ ├── MaterialsProvider.php │ ├── MaterialsProviderInterface.php │ ├── MaterialsProviderInterfaceV2.php │ ├── MaterialsProviderV2.php │ ├── MetadataEnvelope.php │ ├── MetadataStrategyInterface.php │ └── Polyfill │ │ ├── AesGcm.php │ │ ├── ByteArray.php │ │ ├── Gmac.php │ │ ├── Key.php │ │ └── NeedsTrait.php │ ├── CustomerProfiles │ ├── CustomerProfilesClient.php │ └── Exception │ │ └── CustomerProfilesException.php │ ├── DAX │ ├── DAXClient.php │ └── Exception │ │ └── DAXException.php │ ├── DLM │ ├── DLMClient.php │ └── Exception │ │ └── DLMException.php │ ├── DataExchange │ ├── DataExchangeClient.php │ └── Exception │ │ └── DataExchangeException.php │ ├── DataPipeline │ ├── DataPipelineClient.php │ └── Exception │ │ └── DataPipelineException.php │ ├── DataSync │ ├── DataSyncClient.php │ └── Exception │ │ └── DataSyncException.php │ ├── DatabaseMigrationService │ ├── DatabaseMigrationServiceClient.php │ └── Exception │ │ └── DatabaseMigrationServiceException.php │ ├── DefaultsMode │ ├── Configuration.php │ ├── ConfigurationInterface.php │ ├── ConfigurationProvider.php │ └── Exception │ │ └── ConfigurationException.php │ ├── Detective │ ├── DetectiveClient.php │ └── Exception │ │ └── DetectiveException.php │ ├── DevOpsGuru │ ├── DevOpsGuruClient.php │ └── Exception │ │ └── DevOpsGuruException.php │ ├── DeviceFarm │ ├── DeviceFarmClient.php │ └── Exception │ │ └── DeviceFarmException.php │ ├── DirectConnect │ ├── DirectConnectClient.php │ └── Exception │ │ └── DirectConnectException.php │ ├── DirectoryService │ ├── DirectoryServiceClient.php │ └── Exception │ │ └── DirectoryServiceException.php │ ├── DocDB │ ├── DocDBClient.php │ └── Exception │ │ └── DocDBException.php │ ├── DocDBElastic │ ├── DocDBElasticClient.php │ └── Exception │ │ └── DocDBElasticException.php │ ├── DoctrineCacheAdapter.php │ ├── DynamoDb │ ├── BinaryValue.php │ ├── DynamoDbClient.php │ ├── Exception │ │ └── DynamoDbException.php │ ├── LockingSessionConnection.php │ ├── Marshaler.php │ ├── NumberValue.php │ ├── SessionConnectionConfigTrait.php │ ├── SessionConnectionInterface.php │ ├── SessionHandler.php │ ├── SetValue.php │ ├── StandardSessionConnection.php │ └── WriteRequestBatch.php │ ├── DynamoDbStreams │ ├── DynamoDbStreamsClient.php │ └── Exception │ │ └── DynamoDbStreamsException.php │ ├── EBS │ ├── EBSClient.php │ └── Exception │ │ └── EBSException.php │ ├── EC2InstanceConnect │ ├── EC2InstanceConnectClient.php │ └── Exception │ │ └── EC2InstanceConnectException.php │ ├── ECRPublic │ ├── ECRPublicClient.php │ └── Exception │ │ └── ECRPublicException.php │ ├── EKS │ ├── EKSClient.php │ └── Exception │ │ └── EKSException.php │ ├── EMRContainers │ ├── EMRContainersClient.php │ └── Exception │ │ └── EMRContainersException.php │ ├── EMRServerless │ ├── EMRServerlessClient.php │ └── Exception │ │ └── EMRServerlessException.php │ ├── Ec2 │ ├── Ec2Client.php │ └── Exception │ │ └── Ec2Exception.php │ ├── Ecr │ ├── EcrClient.php │ └── Exception │ │ └── EcrException.php │ ├── Ecs │ ├── EcsClient.php │ └── Exception │ │ └── EcsException.php │ ├── Efs │ ├── EfsClient.php │ └── Exception │ │ └── EfsException.php │ ├── ElastiCache │ ├── ElastiCacheClient.php │ └── Exception │ │ └── ElastiCacheException.php │ ├── ElasticBeanstalk │ ├── ElasticBeanstalkClient.php │ └── Exception │ │ └── ElasticBeanstalkException.php │ ├── ElasticInference │ ├── ElasticInferenceClient.php │ └── Exception │ │ └── ElasticInferenceException.php │ ├── ElasticLoadBalancing │ ├── ElasticLoadBalancingClient.php │ └── Exception │ │ └── ElasticLoadBalancingException.php │ ├── ElasticLoadBalancingV2 │ ├── ElasticLoadBalancingV2Client.php │ └── Exception │ │ └── ElasticLoadBalancingV2Exception.php │ ├── ElasticTranscoder │ ├── ElasticTranscoderClient.php │ └── Exception │ │ └── ElasticTranscoderException.php │ ├── ElasticsearchService │ ├── ElasticsearchServiceClient.php │ └── Exception │ │ └── ElasticsearchServiceException.php │ ├── Emr │ ├── EmrClient.php │ └── Exception │ │ └── EmrException.php │ ├── Endpoint │ ├── EndpointProvider.php │ ├── Partition.php │ ├── PartitionEndpointProvider.php │ ├── PartitionInterface.php │ ├── PatternEndpointProvider.php │ ├── UseDualstackEndpoint │ │ ├── Configuration.php │ │ ├── ConfigurationInterface.php │ │ ├── ConfigurationProvider.php │ │ └── Exception │ │ │ └── ConfigurationException.php │ └── UseFipsEndpoint │ │ ├── Configuration.php │ │ ├── ConfigurationInterface.php │ │ ├── ConfigurationProvider.php │ │ └── Exception │ │ └── ConfigurationException.php │ ├── EndpointDiscovery │ ├── Configuration.php │ ├── ConfigurationInterface.php │ ├── ConfigurationProvider.php │ ├── EndpointDiscoveryMiddleware.php │ ├── EndpointList.php │ └── Exception │ │ └── ConfigurationException.php │ ├── EndpointParameterMiddleware.php │ ├── EndpointV2 │ ├── EndpointDefinitionProvider.php │ ├── EndpointProviderV2.php │ ├── EndpointV2SerializerTrait.php │ ├── Rule │ │ ├── AbstractRule.php │ │ ├── EndpointRule.php │ │ ├── ErrorRule.php │ │ ├── RuleCreator.php │ │ └── TreeRule.php │ └── Ruleset │ │ ├── Ruleset.php │ │ ├── RulesetEndpoint.php │ │ ├── RulesetParameter.php │ │ └── RulesetStandardLibrary.php │ ├── EventBridge │ ├── EventBridgeClient.php │ ├── EventBridgeEndpointMiddleware.php │ └── Exception │ │ └── EventBridgeException.php │ ├── Exception │ ├── AwsException.php │ ├── CommonRuntimeException.php │ ├── CouldNotCreateChecksumException.php │ ├── CredentialsException.php │ ├── CryptoException.php │ ├── CryptoPolyfillException.php │ ├── EventStreamDataException.php │ ├── IncalculablePayloadException.php │ ├── InvalidJsonException.php │ ├── InvalidRegionException.php │ ├── MultipartUploadException.php │ ├── TokenException.php │ ├── UnresolvedApiException.php │ ├── UnresolvedEndpointException.php │ └── UnresolvedSignatureException.php │ ├── FIS │ ├── Exception │ │ └── FISException.php │ └── FISClient.php │ ├── FMS │ ├── Exception │ │ └── FMSException.php │ └── FMSClient.php │ ├── FSx │ ├── Exception │ │ └── FSxException.php │ └── FSxClient.php │ ├── FinSpaceData │ ├── Exception │ │ └── FinSpaceDataException.php │ └── FinSpaceDataClient.php │ ├── Firehose │ ├── Exception │ │ └── FirehoseException.php │ └── FirehoseClient.php │ ├── ForecastQueryService │ ├── Exception │ │ └── ForecastQueryServiceException.php │ └── ForecastQueryServiceClient.php │ ├── ForecastService │ ├── Exception │ │ └── ForecastServiceException.php │ └── ForecastServiceClient.php │ ├── FraudDetector │ ├── Exception │ │ └── FraudDetectorException.php │ └── FraudDetectorClient.php │ ├── GameLift │ ├── Exception │ │ └── GameLiftException.php │ └── GameLiftClient.php │ ├── GameSparks │ ├── Exception │ │ └── GameSparksException.php │ └── GameSparksClient.php │ ├── Glacier │ ├── Exception │ │ └── GlacierException.php │ ├── GlacierClient.php │ ├── MultipartUploader.php │ └── TreeHash.php │ ├── GlobalAccelerator │ ├── Exception │ │ └── GlobalAcceleratorException.php │ └── GlobalAcceleratorClient.php │ ├── Glue │ ├── Exception │ │ └── GlueException.php │ └── GlueClient.php │ ├── GlueDataBrew │ ├── Exception │ │ └── GlueDataBrewException.php │ └── GlueDataBrewClient.php │ ├── Greengrass │ ├── Exception │ │ └── GreengrassException.php │ └── GreengrassClient.php │ ├── GreengrassV2 │ ├── Exception │ │ └── GreengrassV2Exception.php │ └── GreengrassV2Client.php │ ├── GroundStation │ ├── Exception │ │ └── GroundStationException.php │ └── GroundStationClient.php │ ├── GuardDuty │ ├── Exception │ │ └── GuardDutyException.php │ └── GuardDutyClient.php │ ├── Handler │ ├── GuzzleV5 │ │ ├── GuzzleHandler.php │ │ ├── GuzzleStream.php │ │ └── PsrStream.php │ └── GuzzleV6 │ │ └── GuzzleHandler.php │ ├── HandlerList.php │ ├── HasDataTrait.php │ ├── HasMonitoringEventsTrait.php │ ├── HashInterface.php │ ├── HashingStream.php │ ├── Health │ ├── Exception │ │ └── HealthException.php │ └── HealthClient.php │ ├── HealthLake │ ├── Exception │ │ └── HealthLakeException.php │ └── HealthLakeClient.php │ ├── History.php │ ├── Honeycode │ ├── Exception │ │ └── HoneycodeException.php │ └── HoneycodeClient.php │ ├── IVS │ ├── Exception │ │ └── IVSException.php │ └── IVSClient.php │ ├── IVSRealTime │ ├── Exception │ │ └── IVSRealTimeException.php │ └── IVSRealTimeClient.php │ ├── Iam │ ├── Exception │ │ └── IamException.php │ └── IamClient.php │ ├── IdempotencyTokenMiddleware.php │ ├── IdentityStore │ ├── Exception │ │ └── IdentityStoreException.php │ └── IdentityStoreClient.php │ ├── ImportExport │ ├── Exception │ │ └── ImportExportException.php │ └── ImportExportClient.php │ ├── InputValidationMiddleware.php │ ├── Inspector │ ├── Exception │ │ └── InspectorException.php │ └── InspectorClient.php │ ├── Inspector2 │ ├── Exception │ │ └── Inspector2Exception.php │ └── Inspector2Client.php │ ├── InternetMonitor │ ├── Exception │ │ └── InternetMonitorException.php │ └── InternetMonitorClient.php │ ├── IoT1ClickDevicesService │ ├── Exception │ │ └── IoT1ClickDevicesServiceException.php │ └── IoT1ClickDevicesServiceClient.php │ ├── IoT1ClickProjects │ ├── Exception │ │ └── IoT1ClickProjectsException.php │ └── IoT1ClickProjectsClient.php │ ├── IoTAnalytics │ ├── Exception │ │ └── IoTAnalyticsException.php │ └── IoTAnalyticsClient.php │ ├── IoTDeviceAdvisor │ ├── Exception │ │ └── IoTDeviceAdvisorException.php │ └── IoTDeviceAdvisorClient.php │ ├── IoTEvents │ ├── Exception │ │ └── IoTEventsException.php │ └── IoTEventsClient.php │ ├── IoTEventsData │ ├── Exception │ │ └── IoTEventsDataException.php │ └── IoTEventsDataClient.php │ ├── IoTFleetHub │ ├── Exception │ │ └── IoTFleetHubException.php │ └── IoTFleetHubClient.php │ ├── IoTFleetWise │ ├── Exception │ │ └── IoTFleetWiseException.php │ └── IoTFleetWiseClient.php │ ├── IoTJobsDataPlane │ ├── Exception │ │ └── IoTJobsDataPlaneException.php │ └── IoTJobsDataPlaneClient.php │ ├── IoTRoboRunner │ ├── Exception │ │ └── IoTRoboRunnerException.php │ └── IoTRoboRunnerClient.php │ ├── IoTSecureTunneling │ ├── Exception │ │ └── IoTSecureTunnelingException.php │ └── IoTSecureTunnelingClient.php │ ├── IoTSiteWise │ ├── Exception │ │ └── IoTSiteWiseException.php │ └── IoTSiteWiseClient.php │ ├── IoTThingsGraph │ ├── Exception │ │ └── IoTThingsGraphException.php │ └── IoTThingsGraphClient.php │ ├── IoTTwinMaker │ ├── Exception │ │ └── IoTTwinMakerException.php │ └── IoTTwinMakerClient.php │ ├── IoTWireless │ ├── Exception │ │ └── IoTWirelessException.php │ └── IoTWirelessClient.php │ ├── Iot │ ├── Exception │ │ └── IotException.php │ └── IotClient.php │ ├── IotDataPlane │ ├── Exception │ │ └── IotDataPlaneException.php │ └── IotDataPlaneClient.php │ ├── JsonCompiler.php │ ├── Kafka │ ├── Exception │ │ └── KafkaException.php │ └── KafkaClient.php │ ├── KafkaConnect │ ├── Exception │ │ └── KafkaConnectException.php │ └── KafkaConnectClient.php │ ├── KendraRanking │ ├── Exception │ │ └── KendraRankingException.php │ └── KendraRankingClient.php │ ├── Keyspaces │ ├── Exception │ │ └── KeyspacesException.php │ └── KeyspacesClient.php │ ├── Kinesis │ ├── Exception │ │ └── KinesisException.php │ └── KinesisClient.php │ ├── KinesisAnalytics │ ├── Exception │ │ └── KinesisAnalyticsException.php │ └── KinesisAnalyticsClient.php │ ├── KinesisAnalyticsV2 │ ├── Exception │ │ └── KinesisAnalyticsV2Exception.php │ └── KinesisAnalyticsV2Client.php │ ├── KinesisVideo │ ├── Exception │ │ └── KinesisVideoException.php │ └── KinesisVideoClient.php │ ├── KinesisVideoArchivedMedia │ ├── Exception │ │ └── KinesisVideoArchivedMediaException.php │ └── KinesisVideoArchivedMediaClient.php │ ├── KinesisVideoMedia │ ├── Exception │ │ └── KinesisVideoMediaException.php │ └── KinesisVideoMediaClient.php │ ├── KinesisVideoSignalingChannels │ ├── Exception │ │ └── KinesisVideoSignalingChannelsException.php │ └── KinesisVideoSignalingChannelsClient.php │ ├── KinesisVideoWebRTCStorage │ ├── Exception │ │ └── KinesisVideoWebRTCStorageException.php │ └── KinesisVideoWebRTCStorageClient.php │ ├── Kms │ ├── Exception │ │ └── KmsException.php │ └── KmsClient.php │ ├── LakeFormation │ ├── Exception │ │ └── LakeFormationException.php │ └── LakeFormationClient.php │ ├── Lambda │ ├── Exception │ │ └── LambdaException.php │ └── LambdaClient.php │ ├── LexModelBuildingService │ ├── Exception │ │ └── LexModelBuildingServiceException.php │ └── LexModelBuildingServiceClient.php │ ├── LexModelsV2 │ ├── Exception │ │ └── LexModelsV2Exception.php │ └── LexModelsV2Client.php │ ├── LexRuntimeService │ ├── Exception │ │ └── LexRuntimeServiceException.php │ └── LexRuntimeServiceClient.php │ ├── LexRuntimeV2 │ ├── Exception │ │ └── LexRuntimeV2Exception.php │ └── LexRuntimeV2Client.php │ ├── LicenseManager │ ├── Exception │ │ └── LicenseManagerException.php │ └── LicenseManagerClient.php │ ├── LicenseManagerLinuxSubscriptions │ ├── Exception │ │ └── LicenseManagerLinuxSubscriptionsException.php │ └── LicenseManagerLinuxSubscriptionsClient.php │ ├── LicenseManagerUserSubscriptions │ ├── Exception │ │ └── LicenseManagerUserSubscriptionsException.php │ └── LicenseManagerUserSubscriptionsClient.php │ ├── Lightsail │ ├── Exception │ │ └── LightsailException.php │ └── LightsailClient.php │ ├── LocationService │ ├── Exception │ │ └── LocationServiceException.php │ └── LocationServiceClient.php │ ├── LookoutEquipment │ ├── Exception │ │ └── LookoutEquipmentException.php │ └── LookoutEquipmentClient.php │ ├── LookoutMetrics │ ├── Exception │ │ └── LookoutMetricsException.php │ └── LookoutMetricsClient.php │ ├── LookoutforVision │ ├── Exception │ │ └── LookoutforVisionException.php │ └── LookoutforVisionClient.php │ ├── LruArrayCache.php │ ├── MQ │ ├── Exception │ │ └── MQException.php │ └── MQClient.php │ ├── MTurk │ ├── Exception │ │ └── MTurkException.php │ └── MTurkClient.php │ ├── MWAA │ ├── Exception │ │ └── MWAAException.php │ └── MWAAClient.php │ ├── MachineLearning │ ├── Exception │ │ └── MachineLearningException.php │ └── MachineLearningClient.php │ ├── Macie │ ├── Exception │ │ └── MacieException.php │ └── MacieClient.php │ ├── Macie2 │ ├── Exception │ │ └── Macie2Exception.php │ └── Macie2Client.php │ ├── MainframeModernization │ ├── Exception │ │ └── MainframeModernizationException.php │ └── MainframeModernizationClient.php │ ├── ManagedBlockchain │ ├── Exception │ │ └── ManagedBlockchainException.php │ └── ManagedBlockchainClient.php │ ├── ManagedGrafana │ ├── Exception │ │ └── ManagedGrafanaException.php │ └── ManagedGrafanaClient.php │ ├── MarketplaceCatalog │ ├── Exception │ │ └── MarketplaceCatalogException.php │ └── MarketplaceCatalogClient.php │ ├── MarketplaceCommerceAnalytics │ ├── Exception │ │ └── MarketplaceCommerceAnalyticsException.php │ └── MarketplaceCommerceAnalyticsClient.php │ ├── MarketplaceEntitlementService │ ├── Exception │ │ └── MarketplaceEntitlementServiceException.php │ └── MarketplaceEntitlementServiceClient.php │ ├── MarketplaceMetering │ ├── Exception │ │ └── MarketplaceMeteringException.php │ └── MarketplaceMeteringClient.php │ ├── MediaConnect │ ├── Exception │ │ └── MediaConnectException.php │ └── MediaConnectClient.php │ ├── MediaConvert │ ├── Exception │ │ └── MediaConvertException.php │ └── MediaConvertClient.php │ ├── MediaLive │ ├── Exception │ │ └── MediaLiveException.php │ └── MediaLiveClient.php │ ├── MediaPackage │ ├── Exception │ │ └── MediaPackageException.php │ └── MediaPackageClient.php │ ├── MediaPackageVod │ ├── Exception │ │ └── MediaPackageVodException.php │ └── MediaPackageVodClient.php │ ├── MediaStore │ ├── Exception │ │ └── MediaStoreException.php │ └── MediaStoreClient.php │ ├── MediaStoreData │ ├── Exception │ │ └── MediaStoreDataException.php │ └── MediaStoreDataClient.php │ ├── MediaTailor │ ├── Exception │ │ └── MediaTailorException.php │ └── MediaTailorClient.php │ ├── MemoryDB │ ├── Exception │ │ └── MemoryDBException.php │ └── MemoryDBClient.php │ ├── Middleware.php │ ├── MigrationHub │ ├── Exception │ │ └── MigrationHubException.php │ └── MigrationHubClient.php │ ├── MigrationHubConfig │ ├── Exception │ │ └── MigrationHubConfigException.php │ └── MigrationHubConfigClient.php │ ├── MigrationHubOrchestrator │ ├── Exception │ │ └── MigrationHubOrchestratorException.php │ └── MigrationHubOrchestratorClient.php │ ├── MigrationHubRefactorSpaces │ ├── Exception │ │ └── MigrationHubRefactorSpacesException.php │ └── MigrationHubRefactorSpacesClient.php │ ├── MigrationHubStrategyRecommendations │ ├── Exception │ │ └── MigrationHubStrategyRecommendationsException.php │ └── MigrationHubStrategyRecommendationsClient.php │ ├── Mobile │ ├── Exception │ │ └── MobileException.php │ └── MobileClient.php │ ├── MockHandler.php │ ├── MonitoringEventsInterface.php │ ├── MultiRegionClient.php │ ├── Multipart │ ├── AbstractUploadManager.php │ ├── AbstractUploader.php │ └── UploadState.php │ ├── Neptune │ ├── Exception │ │ └── NeptuneException.php │ └── NeptuneClient.php │ ├── NetworkFirewall │ ├── Exception │ │ └── NetworkFirewallException.php │ └── NetworkFirewallClient.php │ ├── NetworkManager │ ├── Exception │ │ └── NetworkManagerException.php │ └── NetworkManagerClient.php │ ├── NimbleStudio │ ├── Exception │ │ └── NimbleStudioException.php │ └── NimbleStudioClient.php │ ├── OAM │ ├── Exception │ │ └── OAMException.php │ └── OAMClient.php │ ├── OSIS │ ├── Exception │ │ └── OSISException.php │ └── OSISClient.php │ ├── Omics │ ├── Exception │ │ └── OmicsException.php │ └── OmicsClient.php │ ├── OpenSearchServerless │ ├── Exception │ │ └── OpenSearchServerlessException.php │ └── OpenSearchServerlessClient.php │ ├── OpenSearchService │ ├── Exception │ │ └── OpenSearchServiceException.php │ └── OpenSearchServiceClient.php │ ├── OpsWorks │ ├── Exception │ │ └── OpsWorksException.php │ └── OpsWorksClient.php │ ├── OpsWorksCM │ ├── Exception │ │ └── OpsWorksCMException.php │ └── OpsWorksCMClient.php │ ├── Organizations │ ├── Exception │ │ └── OrganizationsException.php │ └── OrganizationsClient.php │ ├── Outposts │ ├── Exception │ │ └── OutpostsException.php │ └── OutpostsClient.php │ ├── PI │ ├── Exception │ │ └── PIException.php │ └── PIClient.php │ ├── Panorama │ ├── Exception │ │ └── PanoramaException.php │ └── PanoramaClient.php │ ├── Personalize │ ├── Exception │ │ └── PersonalizeException.php │ └── PersonalizeClient.php │ ├── PersonalizeEvents │ ├── Exception │ │ └── PersonalizeEventsException.php │ └── PersonalizeEventsClient.php │ ├── PersonalizeRuntime │ ├── Exception │ │ └── PersonalizeRuntimeException.php │ └── PersonalizeRuntimeClient.php │ ├── PhpHash.php │ ├── Pinpoint │ ├── Exception │ │ └── PinpointException.php │ └── PinpointClient.php │ ├── PinpointEmail │ ├── Exception │ │ └── PinpointEmailException.php │ └── PinpointEmailClient.php │ ├── PinpointSMSVoice │ ├── Exception │ │ └── PinpointSMSVoiceException.php │ └── PinpointSMSVoiceClient.php │ ├── PinpointSMSVoiceV2 │ ├── Exception │ │ └── PinpointSMSVoiceV2Exception.php │ └── PinpointSMSVoiceV2Client.php │ ├── Pipes │ ├── Exception │ │ └── PipesException.php │ └── PipesClient.php │ ├── Polly │ ├── Exception │ │ └── PollyException.php │ └── PollyClient.php │ ├── PresignUrlMiddleware.php │ ├── Pricing │ ├── Exception │ │ └── PricingException.php │ └── PricingClient.php │ ├── PrivateNetworks │ ├── Exception │ │ └── PrivateNetworksException.php │ └── PrivateNetworksClient.php │ ├── PrometheusService │ ├── Exception │ │ └── PrometheusServiceException.php │ └── PrometheusServiceClient.php │ ├── Proton │ ├── Exception │ │ └── ProtonException.php │ └── ProtonClient.php │ ├── Psr16CacheAdapter.php │ ├── PsrCacheAdapter.php │ ├── QLDB │ ├── Exception │ │ └── QLDBException.php │ └── QLDBClient.php │ ├── QLDBSession │ ├── Exception │ │ └── QLDBSessionException.php │ └── QLDBSessionClient.php │ ├── QuickSight │ ├── Exception │ │ └── QuickSightException.php │ └── QuickSightClient.php │ ├── RAM │ ├── Exception │ │ └── RAMException.php │ └── RAMClient.php │ ├── RDSDataService │ ├── Exception │ │ └── RDSDataServiceException.php │ └── RDSDataServiceClient.php │ ├── Rds │ ├── AuthTokenGenerator.php │ ├── Exception │ │ └── RdsException.php │ └── RdsClient.php │ ├── RecycleBin │ ├── Exception │ │ └── RecycleBinException.php │ └── RecycleBinClient.php │ ├── Redshift │ ├── Exception │ │ └── RedshiftException.php │ └── RedshiftClient.php │ ├── RedshiftDataAPIService │ ├── Exception │ │ └── RedshiftDataAPIServiceException.php │ └── RedshiftDataAPIServiceClient.php │ ├── RedshiftServerless │ ├── Exception │ │ └── RedshiftServerlessException.php │ └── RedshiftServerlessClient.php │ ├── Rekognition │ ├── Exception │ │ └── RekognitionException.php │ └── RekognitionClient.php │ ├── ResilienceHub │ ├── Exception │ │ └── ResilienceHubException.php │ └── ResilienceHubClient.php │ ├── ResourceExplorer2 │ ├── Exception │ │ └── ResourceExplorer2Exception.php │ └── ResourceExplorer2Client.php │ ├── ResourceGroups │ ├── Exception │ │ └── ResourceGroupsException.php │ └── ResourceGroupsClient.php │ ├── ResourceGroupsTaggingAPI │ ├── Exception │ │ └── ResourceGroupsTaggingAPIException.php │ └── ResourceGroupsTaggingAPIClient.php │ ├── ResponseContainerInterface.php │ ├── Result.php │ ├── ResultInterface.php │ ├── ResultPaginator.php │ ├── Retry │ ├── Configuration.php │ ├── ConfigurationInterface.php │ ├── ConfigurationProvider.php │ ├── Exception │ │ └── ConfigurationException.php │ ├── QuotaManager.php │ ├── RateLimiter.php │ └── RetryHelperTrait.php │ ├── RetryMiddleware.php │ ├── RetryMiddlewareV2.php │ ├── RoboMaker │ ├── Exception │ │ └── RoboMakerException.php │ └── RoboMakerClient.php │ ├── RolesAnywhere │ ├── Exception │ │ └── RolesAnywhereException.php │ └── RolesAnywhereClient.php │ ├── Route53 │ ├── Exception │ │ └── Route53Exception.php │ └── Route53Client.php │ ├── Route53Domains │ ├── Exception │ │ └── Route53DomainsException.php │ └── Route53DomainsClient.php │ ├── Route53RecoveryCluster │ ├── Exception │ │ └── Route53RecoveryClusterException.php │ └── Route53RecoveryClusterClient.php │ ├── Route53RecoveryControlConfig │ ├── Exception │ │ └── Route53RecoveryControlConfigException.php │ └── Route53RecoveryControlConfigClient.php │ ├── Route53RecoveryReadiness │ ├── Exception │ │ └── Route53RecoveryReadinessException.php │ └── Route53RecoveryReadinessClient.php │ ├── Route53Resolver │ ├── Exception │ │ └── Route53ResolverException.php │ └── Route53ResolverClient.php │ ├── S3 │ ├── AmbiguousSuccessParser.php │ ├── ApplyChecksumMiddleware.php │ ├── BatchDelete.php │ ├── BucketEndpointArnMiddleware.php │ ├── BucketEndpointMiddleware.php │ ├── CalculatesChecksumTrait.php │ ├── Crypto │ │ ├── CryptoParamsTrait.php │ │ ├── CryptoParamsTraitV2.php │ │ ├── HeadersMetadataStrategy.php │ │ ├── InstructionFileMetadataStrategy.php │ │ ├── S3EncryptionClient.php │ │ ├── S3EncryptionClientV2.php │ │ ├── S3EncryptionMultipartUploader.php │ │ ├── S3EncryptionMultipartUploaderV2.php │ │ └── UserAgentTrait.php │ ├── EndpointRegionHelperTrait.php │ ├── Exception │ │ ├── DeleteMultipleObjectsException.php │ │ ├── PermanentRedirectException.php │ │ ├── S3Exception.php │ │ └── S3MultipartUploadException.php │ ├── GetBucketLocationParser.php │ ├── MultipartCopy.php │ ├── MultipartUploader.php │ ├── MultipartUploadingTrait.php │ ├── ObjectCopier.php │ ├── ObjectUploader.php │ ├── PermanentRedirectMiddleware.php │ ├── PostObject.php │ ├── PostObjectV4.php │ ├── PutObjectUrlMiddleware.php │ ├── RegionalEndpoint │ │ ├── Configuration.php │ │ ├── ConfigurationInterface.php │ │ ├── ConfigurationProvider.php │ │ └── Exception │ │ │ └── ConfigurationException.php │ ├── RetryableMalformedResponseParser.php │ ├── S3Client.php │ ├── S3ClientInterface.php │ ├── S3ClientTrait.php │ ├── S3EndpointMiddleware.php │ ├── S3MultiRegionClient.php │ ├── S3UriParser.php │ ├── SSECMiddleware.php │ ├── StreamWrapper.php │ ├── Transfer.php │ ├── UseArnRegion │ │ ├── Configuration.php │ │ ├── ConfigurationInterface.php │ │ ├── ConfigurationProvider.php │ │ └── Exception │ │ │ └── ConfigurationException.php │ └── ValidateResponseChecksumParser.php │ ├── S3Control │ ├── EndpointArnMiddleware.php │ ├── Exception │ │ └── S3ControlException.php │ └── S3ControlClient.php │ ├── S3Outposts │ ├── Exception │ │ └── S3OutpostsException.php │ └── S3OutpostsClient.php │ ├── SSMContacts │ ├── Exception │ │ └── SSMContactsException.php │ └── SSMContactsClient.php │ ├── SSMIncidents │ ├── Exception │ │ └── SSMIncidentsException.php │ └── SSMIncidentsClient.php │ ├── SSO │ ├── Exception │ │ └── SSOException.php │ └── SSOClient.php │ ├── SSOAdmin │ ├── Exception │ │ └── SSOAdminException.php │ └── SSOAdminClient.php │ ├── SSOOIDC │ ├── Exception │ │ └── SSOOIDCException.php │ └── SSOOIDCClient.php │ ├── SageMaker │ ├── Exception │ │ └── SageMakerException.php │ └── SageMakerClient.php │ ├── SageMakerFeatureStoreRuntime │ ├── Exception │ │ └── SageMakerFeatureStoreRuntimeException.php │ └── SageMakerFeatureStoreRuntimeClient.php │ ├── SageMakerGeospatial │ ├── Exception │ │ └── SageMakerGeospatialException.php │ └── SageMakerGeospatialClient.php │ ├── SageMakerMetrics │ ├── Exception │ │ └── SageMakerMetricsException.php │ └── SageMakerMetricsClient.php │ ├── SageMakerRuntime │ ├── Exception │ │ └── SageMakerRuntimeException.php │ └── SageMakerRuntimeClient.php │ ├── SagemakerEdgeManager │ ├── Exception │ │ └── SagemakerEdgeManagerException.php │ └── SagemakerEdgeManagerClient.php │ ├── SavingsPlans │ ├── Exception │ │ └── SavingsPlansException.php │ └── SavingsPlansClient.php │ ├── Scheduler │ ├── Exception │ │ └── SchedulerException.php │ └── SchedulerClient.php │ ├── Schemas │ ├── Exception │ │ └── SchemasException.php │ └── SchemasClient.php │ ├── Script │ └── Composer │ │ └── Composer.php │ ├── Sdk.php │ ├── SecretsManager │ ├── Exception │ │ └── SecretsManagerException.php │ └── SecretsManagerClient.php │ ├── SecurityHub │ ├── Exception │ │ └── SecurityHubException.php │ └── SecurityHubClient.php │ ├── SecurityLake │ ├── Exception │ │ └── SecurityLakeException.php │ └── SecurityLakeClient.php │ ├── ServerlessApplicationRepository │ ├── Exception │ │ └── ServerlessApplicationRepositoryException.php │ └── ServerlessApplicationRepositoryClient.php │ ├── ServiceCatalog │ ├── Exception │ │ └── ServiceCatalogException.php │ └── ServiceCatalogClient.php │ ├── ServiceDiscovery │ ├── Exception │ │ └── ServiceDiscoveryException.php │ └── ServiceDiscoveryClient.php │ ├── ServiceQuotas │ ├── Exception │ │ └── ServiceQuotasException.php │ └── ServiceQuotasClient.php │ ├── Ses │ ├── Exception │ │ └── SesException.php │ └── SesClient.php │ ├── SesV2 │ ├── Exception │ │ └── SesV2Exception.php │ └── SesV2Client.php │ ├── Sfn │ ├── Exception │ │ └── SfnException.php │ └── SfnClient.php │ ├── Shield │ ├── Exception │ │ └── ShieldException.php │ └── ShieldClient.php │ ├── Signature │ ├── AnonymousSignature.php │ ├── S3SignatureV4.php │ ├── SignatureInterface.php │ ├── SignatureProvider.php │ ├── SignatureTrait.php │ └── SignatureV4.php │ ├── SimSpaceWeaver │ ├── Exception │ │ └── SimSpaceWeaverException.php │ └── SimSpaceWeaverClient.php │ ├── Sms │ ├── Exception │ │ └── SmsException.php │ └── SmsClient.php │ ├── SnowBall │ ├── Exception │ │ └── SnowBallException.php │ └── SnowBallClient.php │ ├── SnowDeviceManagement │ ├── Exception │ │ └── SnowDeviceManagementException.php │ └── SnowDeviceManagementClient.php │ ├── Sns │ ├── Exception │ │ └── SnsException.php │ └── SnsClient.php │ ├── Sqs │ ├── Exception │ │ └── SqsException.php │ └── SqsClient.php │ ├── Ssm │ ├── Exception │ │ └── SsmException.php │ └── SsmClient.php │ ├── SsmSap │ ├── Exception │ │ └── SsmSapException.php │ └── SsmSapClient.php │ ├── StorageGateway │ ├── Exception │ │ └── StorageGatewayException.php │ └── StorageGatewayClient.php │ ├── StreamRequestPayloadMiddleware.php │ ├── Sts │ ├── Exception │ │ └── StsException.php │ ├── RegionalEndpoints │ │ ├── Configuration.php │ │ ├── ConfigurationInterface.php │ │ ├── ConfigurationProvider.php │ │ └── Exception │ │ │ └── ConfigurationException.php │ └── StsClient.php │ ├── Support │ ├── Exception │ │ └── SupportException.php │ └── SupportClient.php │ ├── SupportApp │ ├── Exception │ │ └── SupportAppException.php │ └── SupportAppClient.php │ ├── Swf │ ├── Exception │ │ └── SwfException.php │ └── SwfClient.php │ ├── Synthetics │ ├── Exception │ │ └── SyntheticsException.php │ └── SyntheticsClient.php │ ├── Textract │ ├── Exception │ │ └── TextractException.php │ └── TextractClient.php │ ├── TimestreamQuery │ ├── Exception │ │ └── TimestreamQueryException.php │ └── TimestreamQueryClient.php │ ├── TimestreamWrite │ ├── Exception │ │ └── TimestreamWriteException.php │ └── TimestreamWriteClient.php │ ├── Tnb │ ├── Exception │ │ └── TnbException.php │ └── TnbClient.php │ ├── Token │ ├── BearerTokenAuthorization.php │ ├── ParsesIniTrait.php │ ├── RefreshableTokenProviderInterface.php │ ├── SsoToken.php │ ├── SsoTokenProvider.php │ ├── Token.php │ ├── TokenAuthorization.php │ ├── TokenInterface.php │ └── TokenProvider.php │ ├── TraceMiddleware.php │ ├── TranscribeService │ ├── Exception │ │ └── TranscribeServiceException.php │ └── TranscribeServiceClient.php │ ├── Transfer │ ├── Exception │ │ └── TransferException.php │ └── TransferClient.php │ ├── Translate │ ├── Exception │ │ └── TranslateException.php │ └── TranslateClient.php │ ├── VPCLattice │ ├── Exception │ │ └── VPCLatticeException.php │ └── VPCLatticeClient.php │ ├── VoiceID │ ├── Exception │ │ └── VoiceIDException.php │ └── VoiceIDClient.php │ ├── WAFV2 │ ├── Exception │ │ └── WAFV2Exception.php │ └── WAFV2Client.php │ ├── Waf │ ├── Exception │ │ └── WafException.php │ └── WafClient.php │ ├── WafRegional │ ├── Exception │ │ └── WafRegionalException.php │ └── WafRegionalClient.php │ ├── Waiter.php │ ├── WellArchitected │ ├── Exception │ │ └── WellArchitectedException.php │ └── WellArchitectedClient.php │ ├── WorkDocs │ ├── Exception │ │ └── WorkDocsException.php │ └── WorkDocsClient.php │ ├── WorkLink │ ├── Exception │ │ └── WorkLinkException.php │ └── WorkLinkClient.php │ ├── WorkMail │ ├── Exception │ │ └── WorkMailException.php │ └── WorkMailClient.php │ ├── WorkMailMessageFlow │ ├── Exception │ │ └── WorkMailMessageFlowException.php │ └── WorkMailMessageFlowClient.php │ ├── WorkSpaces │ ├── Exception │ │ └── WorkSpacesException.php │ └── WorkSpacesClient.php │ ├── WorkSpacesWeb │ ├── Exception │ │ └── WorkSpacesWebException.php │ └── WorkSpacesWebClient.php │ ├── WrappedHttpHandler.php │ ├── XRay │ ├── Exception │ │ └── XRayException.php │ └── XRayClient.php │ ├── data │ ├── accessanalyzer │ │ └── 2019-11-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── account │ │ └── 2021-02-01 │ │ │ ├── api-2.json.php │ │ │ ├── defaults-1.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── acm-pca │ │ └── 2017-08-22 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── acm │ │ └── 2015-12-08 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── alexaforbusiness │ │ └── 2017-11-09 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── aliases.json.php │ ├── amp │ │ └── 2020-08-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── amplify │ │ └── 2017-07-25 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── amplifybackend │ │ └── 2020-08-11 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── amplifyuibuilder │ │ └── 2021-08-11 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── apigateway │ │ └── 2015-07-09 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── apigatewaymanagementapi │ │ └── 2018-11-29 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── apigatewayv2 │ │ └── 2018-11-29 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── appconfig │ │ └── 2019-10-09 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── appconfigdata │ │ └── 2021-11-11 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── appflow │ │ └── 2020-08-23 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── appintegrations │ │ └── 2020-07-29 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── application-autoscaling │ │ └── 2016-02-06 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── application-insights │ │ └── 2018-11-25 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── applicationcostprofiler │ │ └── 2020-09-10 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── appmesh │ │ ├── 2018-10-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ │ └── 2019-01-25 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── apprunner │ │ └── 2020-05-15 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── appstream │ │ └── 2016-12-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── appsync │ │ └── 2017-07-25 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── arc-zonal-shift │ │ └── 2022-10-30 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── athena │ │ └── 2017-05-18 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── auditmanager │ │ └── 2017-07-25 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── autoscaling-plans │ │ └── 2018-01-06 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── autoscaling │ │ └── 2011-01-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── backup-gateway │ │ └── 2021-01-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── backup │ │ └── 2018-11-15 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── backupstorage │ │ └── 2018-04-10 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── batch │ │ └── 2016-08-10 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── billingconductor │ │ └── 2021-07-30 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── braket │ │ └── 2019-09-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── budgets │ │ └── 2016-10-20 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── ce │ │ └── 2017-10-25 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── chime-sdk-identity │ │ └── 2021-04-20 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── chime-sdk-media-pipelines │ │ └── 2021-07-15 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── chime-sdk-meetings │ │ └── 2021-07-15 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── chime-sdk-messaging │ │ └── 2021-05-15 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── chime-sdk-voice │ │ └── 2022-08-03 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── chime │ │ └── 2018-05-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── cleanrooms │ │ └── 2022-02-17 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── cloud9 │ │ └── 2017-09-23 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── cloudcontrol │ │ └── 2021-09-30 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── clouddirectory │ │ ├── 2016-05-10 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ │ └── 2017-01-11 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── cloudformation │ │ └── 2010-05-15 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── cloudfront │ │ ├── 2015-07-27 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2016-01-28 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2016-08-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2016-08-20 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2016-09-07 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2016-09-29 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2016-11-25 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2017-03-25 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2017-10-30 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2018-06-18 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2018-11-05 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2019-03-26 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ │ └── 2020-05-31 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ ├── cloudhsm │ │ └── 2014-05-30 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── cloudhsmv2 │ │ └── 2017-04-28 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── cloudsearch │ │ └── 2013-01-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── cloudsearchdomain │ │ └── 2013-01-01 │ │ │ ├── api-2.json.php │ │ │ └── endpoint-rule-set-1.json.php │ ├── cloudtrail-data │ │ └── 2021-08-11 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── cloudtrail │ │ └── 2013-11-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── codeartifact │ │ └── 2018-09-22 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── codebuild │ │ └── 2016-10-06 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── codecatalyst │ │ └── 2022-09-28 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── codecommit │ │ └── 2015-04-13 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── codedeploy │ │ └── 2014-10-06 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ ├── codeguru-reviewer │ │ └── 2019-09-19 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── codeguruprofiler │ │ └── 2019-07-18 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── codepipeline │ │ └── 2015-07-09 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── codestar-connections │ │ └── 2019-12-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── codestar-notifications │ │ └── 2019-10-15 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── codestar │ │ └── 2017-04-19 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── cognito-identity │ │ └── 2014-06-30 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── cognito-idp │ │ └── 2016-04-18 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── cognito-sync │ │ └── 2014-06-30 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── comprehend │ │ └── 2017-11-27 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── comprehendmedical │ │ └── 2018-10-30 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── compute-optimizer │ │ └── 2019-11-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── config │ │ └── 2014-11-12 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── connect-contact-lens │ │ └── 2020-08-21 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── connect │ │ └── 2017-08-08 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── connectcampaigns │ │ └── 2021-01-30 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── connectcases │ │ └── 2022-10-03 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── connectparticipant │ │ └── 2018-09-07 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── controltower │ │ └── 2018-05-10 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── cur │ │ └── 2017-01-06 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── customer-profiles │ │ └── 2020-08-15 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── data.iot │ │ └── 2015-05-28 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── databrew │ │ └── 2017-07-25 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── dataexchange │ │ └── 2017-07-25 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── datapipeline │ │ └── 2012-10-29 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── datasync │ │ └── 2018-11-09 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── dax │ │ └── 2017-04-19 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── detective │ │ └── 2018-10-26 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── devicefarm │ │ └── 2015-06-23 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── devops-guru │ │ └── 2020-12-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── directconnect │ │ └── 2012-10-25 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── discovery │ │ └── 2015-11-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── dlm │ │ └── 2018-01-12 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── dms │ │ └── 2016-01-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── docdb-elastic │ │ └── 2022-11-28 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── docdb │ │ └── 2014-10-31 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── drs │ │ └── 2020-02-26 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── ds │ │ └── 2015-04-16 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── dynamodb │ │ ├── 2011-12-05 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ │ └── 2012-08-10 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ ├── ebs │ │ └── 2019-11-02 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── ec2-instance-connect │ │ └── 2018-04-02 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── ec2 │ │ ├── 2015-10-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2016-04-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2016-09-15 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ │ └── 2016-11-15 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ ├── ecr-public │ │ └── 2020-10-30 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── ecr │ │ └── 2015-09-21 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── ecs │ │ └── 2014-11-13 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── eks │ │ └── 2017-11-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── elastic-inference │ │ └── 2017-07-25 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── elasticache │ │ └── 2015-02-02 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── elasticbeanstalk │ │ └── 2010-12-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── elasticfilesystem │ │ └── 2015-02-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── elasticloadbalancing │ │ └── 2012-06-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── elasticloadbalancingv2 │ │ └── 2015-12-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── elasticmapreduce │ │ └── 2009-03-31 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── elastictranscoder │ │ └── 2012-09-25 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ ├── email │ │ └── 2010-12-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ ├── emr-containers │ │ └── 2020-10-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── emr-serverless │ │ └── 2021-07-13 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── endpoints.json.php │ ├── endpoints_prefix_history.json.php │ ├── entitlement.marketplace │ │ └── 2017-01-11 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── es │ │ └── 2015-01-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── eventbridge │ │ └── 2015-10-07 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── events │ │ └── 2015-10-07 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── evidently │ │ └── 2021-02-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── finspace-data │ │ └── 2020-07-13 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── finspace │ │ └── 2021-03-12 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── firehose │ │ └── 2015-08-04 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── fis │ │ └── 2020-12-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── fms │ │ └── 2018-01-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── forecast │ │ └── 2018-06-26 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── forecastquery │ │ └── 2018-06-26 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── frauddetector │ │ └── 2019-11-15 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── fsx │ │ └── 2018-03-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── gamelift │ │ └── 2015-10-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── gamesparks │ │ └── 2021-08-17 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── glacier │ │ └── 2012-06-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ ├── globalaccelerator │ │ └── 2018-08-08 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── glue │ │ └── 2017-03-31 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── grafana │ │ └── 2020-08-18 │ │ │ ├── api-2.json.php │ │ │ ├── defaults-1.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── grandfathered-services.json.php │ ├── greengrass │ │ └── 2017-06-07 │ │ │ ├── api-2.json.php │ │ │ └── endpoint-rule-set-1.json.php │ ├── greengrassv2 │ │ └── 2020-11-30 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── groundstation │ │ └── 2019-05-23 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── guardduty │ │ └── 2017-11-28 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── health │ │ └── 2016-08-04 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── healthlake │ │ └── 2017-07-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── honeycode │ │ └── 2020-03-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── iam │ │ └── 2010-05-08 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── identitystore │ │ └── 2020-06-15 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── imagebuilder │ │ └── 2019-12-02 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── importexport │ │ └── 2010-06-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── inspector │ │ └── 2016-02-16 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── inspector2 │ │ └── 2020-06-08 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── internetmonitor │ │ └── 2021-06-03 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── iot-jobs-data │ │ └── 2017-09-29 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── iot-roborunner │ │ └── 2018-05-10 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── iot │ │ └── 2015-05-28 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── iot1click-devices │ │ └── 2018-05-14 │ │ │ ├── api-2.json.php │ │ │ └── endpoint-rule-set-1.json.php │ ├── iot1click-projects │ │ └── 2018-05-14 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── iotanalytics │ │ └── 2017-11-27 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── iotdeviceadvisor │ │ └── 2020-09-18 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── iotevents-data │ │ └── 2018-10-23 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── iotevents │ │ └── 2018-07-27 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── iotfleethub │ │ └── 2020-11-03 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── iotfleetwise │ │ └── 2021-06-17 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── iotsecuretunneling │ │ └── 2018-10-05 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── iotsitewise │ │ └── 2019-12-02 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── iotthingsgraph │ │ └── 2018-09-06 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── iottwinmaker │ │ └── 2021-11-29 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── iotwireless │ │ └── 2020-11-22 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── ivs-realtime │ │ └── 2020-07-14 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── ivs │ │ └── 2020-07-14 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── ivschat │ │ └── 2020-07-14 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── kafka │ │ └── 2018-11-14 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── kafkaconnect │ │ └── 2021-09-14 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── kendra-ranking │ │ └── 2022-10-19 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── kendra │ │ └── 2019-02-03 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── keyspaces │ │ └── 2022-02-10 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── kinesis-video-archived-media │ │ └── 2017-09-30 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── kinesis-video-media │ │ └── 2017-09-30 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── kinesis-video-signaling │ │ └── 2019-12-04 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── kinesis-video-webrtc-storage │ │ └── 2018-05-10 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── kinesis │ │ └── 2013-12-02 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── kinesisanalytics │ │ └── 2015-08-14 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── kinesisanalyticsv2 │ │ └── 2018-05-23 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── kinesisvideo │ │ └── 2017-09-30 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── kms │ │ └── 2014-11-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── lakeformation │ │ └── 2017-03-31 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── lambda │ │ └── 2015-03-31 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── lex-models │ │ └── 2017-04-19 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── license-manager-linux-subscriptions │ │ └── 2018-05-10 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── license-manager-user-subscriptions │ │ └── 2018-05-10 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── license-manager │ │ └── 2018-08-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── lightsail │ │ └── 2016-11-28 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── location │ │ └── 2020-11-19 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── logs │ │ └── 2014-03-28 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── lookoutequipment │ │ └── 2020-12-15 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── lookoutmetrics │ │ └── 2017-07-25 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── lookoutvision │ │ └── 2020-11-20 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── m2 │ │ └── 2021-04-28 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── machinelearning │ │ └── 2014-12-12 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── macie │ │ └── 2017-12-19 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── macie2 │ │ └── 2020-01-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── managedblockchain │ │ └── 2018-09-24 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── manifest.json.php │ ├── marketplace-catalog │ │ └── 2018-09-17 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── marketplacecommerceanalytics │ │ └── 2015-07-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── mediaconnect │ │ └── 2018-11-14 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── mediaconvert │ │ └── 2017-08-29 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── medialive │ │ └── 2017-10-14 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── mediapackage-vod │ │ └── 2018-11-07 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── mediapackage │ │ └── 2017-10-12 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── mediastore-data │ │ └── 2017-09-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── mediastore │ │ └── 2017-09-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── mediatailor │ │ └── 2018-04-23 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── memorydb │ │ └── 2021-01-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── metering.marketplace │ │ └── 2016-01-14 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── mgh │ │ └── 2017-05-31 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── mgn │ │ └── 2020-02-26 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── migration-hub-refactor-spaces │ │ └── 2021-10-26 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── migrationhub-config │ │ └── 2019-06-30 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── migrationhuborchestrator │ │ └── 2021-08-28 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── migrationhubstrategy │ │ └── 2020-02-19 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── mobile │ │ └── 2017-07-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── models.lex.v2 │ │ └── 2020-08-07 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── monitoring │ │ └── 2010-08-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── mq │ │ └── 2017-11-27 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── mturk-requester │ │ └── 2017-01-17 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── mwaa │ │ └── 2020-07-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── neptune │ │ └── 2014-10-31 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── network-firewall │ │ └── 2020-11-12 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── networkmanager │ │ └── 2019-07-05 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── nimble │ │ └── 2020-08-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── oam │ │ └── 2022-06-10 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── omics │ │ └── 2022-11-28 │ │ │ ├── api-2.json.php │ │ │ ├── defaults-1.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── opensearch │ │ └── 2021-01-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── opensearchserverless │ │ └── 2021-11-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── opsworks │ │ └── 2013-02-18 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── opsworkscm │ │ └── 2016-11-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── organizations │ │ └── 2016-11-28 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── osis │ │ └── 2022-01-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── outposts │ │ └── 2019-12-03 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── panorama │ │ └── 2019-07-24 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── partitions.json.php │ ├── personalize-events │ │ └── 2018-03-22 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── personalize-runtime │ │ └── 2018-05-22 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── personalize │ │ └── 2018-05-22 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── pi │ │ └── 2018-02-27 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── pinpoint-email │ │ └── 2018-07-26 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── pinpoint-sms-voice-v2 │ │ └── 2022-03-31 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── pinpoint │ │ └── 2016-12-01 │ │ │ ├── api-2.json.php │ │ │ └── endpoint-rule-set-1.json.php │ ├── pipes │ │ └── 2015-10-07 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── polly │ │ └── 2016-06-10 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── pricing │ │ └── 2017-10-15 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── privatenetworks │ │ └── 2021-12-03 │ │ │ ├── api-2.json.php │ │ │ ├── defaults-1.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── proton │ │ └── 2020-07-20 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── qldb-session │ │ └── 2019-07-11 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── qldb │ │ └── 2019-01-02 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── quicksight │ │ └── 2018-04-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── ram │ │ └── 2018-01-04 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── rbin │ │ └── 2021-06-15 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── rds-data │ │ └── 2018-08-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── rds │ │ ├── 2014-09-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ │ └── 2014-10-31 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ ├── redshift-data │ │ └── 2019-12-20 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── redshift-serverless │ │ └── 2021-04-21 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── redshift │ │ └── 2012-12-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ ├── rekognition │ │ └── 2016-06-27 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── resiliencehub │ │ └── 2020-04-30 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── resource-explorer-2 │ │ └── 2022-07-28 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── resource-groups │ │ └── 2017-11-27 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── resourcegroupstaggingapi │ │ └── 2017-01-26 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── robomaker │ │ └── 2018-06-29 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── rolesanywhere │ │ └── 2018-05-10 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── route53-recovery-cluster │ │ └── 2019-12-02 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── route53-recovery-control-config │ │ └── 2020-11-02 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── route53-recovery-readiness │ │ └── 2019-12-02 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── route53 │ │ └── 2013-04-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── route53domains │ │ └── 2014-05-15 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── route53resolver │ │ └── 2018-04-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── rum │ │ └── 2018-05-10 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── runtime.lex.v2 │ │ └── 2020-08-07 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── runtime.lex │ │ └── 2016-11-28 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── runtime.sagemaker │ │ └── 2017-05-13 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── s3 │ │ └── 2006-03-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ ├── s3control │ │ └── 2018-08-20 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── s3outposts │ │ └── 2017-07-25 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── sagemaker-a2i-runtime │ │ └── 2019-11-07 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── sagemaker-edge │ │ └── 2020-09-23 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── sagemaker-featurestore-runtime │ │ └── 2020-07-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── sagemaker-geospatial │ │ └── 2020-05-27 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── sagemaker-metrics │ │ └── 2022-09-30 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── sagemaker │ │ └── 2017-07-24 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── savingsplans │ │ └── 2019-06-28 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── scheduler │ │ └── 2021-06-30 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── schemas │ │ └── 2019-12-02 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── sdk-default-configuration.json.php │ ├── secretsmanager │ │ └── 2017-10-17 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── securityhub │ │ └── 2018-10-26 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── securitylake │ │ └── 2018-05-10 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── serverlessrepo │ │ └── 2017-09-08 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── service-quotas │ │ └── 2019-06-24 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── servicecatalog-appregistry │ │ └── 2020-06-24 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── servicecatalog │ │ └── 2015-12-10 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── servicediscovery │ │ └── 2017-03-14 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── sesv2 │ │ └── 2019-09-27 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── shield │ │ └── 2016-06-02 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── signer │ │ └── 2017-08-25 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── simspaceweaver │ │ └── 2022-10-28 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── sms-voice │ │ └── 2018-09-05 │ │ │ ├── api-2.json.php │ │ │ └── endpoint-rule-set-1.json.php │ ├── sms │ │ └── 2016-10-24 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── snow-device-management │ │ └── 2021-08-04 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── snowball │ │ └── 2016-06-30 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── sns │ │ └── 2010-03-31 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── sqs │ │ └── 2012-11-05 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── ssm-contacts │ │ └── 2021-05-03 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── ssm-incidents │ │ └── 2018-05-10 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── ssm-sap │ │ └── 2018-05-10 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── ssm │ │ └── 2014-11-06 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── sso-admin │ │ └── 2020-07-20 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── sso-oidc │ │ └── 2019-06-10 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── sso │ │ └── 2019-06-10 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── states │ │ └── 2016-11-23 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── storagegateway │ │ └── 2013-06-30 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── streams.dynamodb │ │ └── 2012-08-10 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── sts │ │ └── 2011-06-15 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── support-app │ │ └── 2021-08-20 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── support │ │ └── 2013-04-15 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── swf │ │ └── 2012-01-25 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── synthetics │ │ └── 2017-10-11 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── textract │ │ └── 2018-06-27 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── timestream-query │ │ └── 2018-11-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── timestream-write │ │ └── 2018-11-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── tnb │ │ └── 2008-10-21 │ │ │ ├── api-2.json.php │ │ │ ├── defaults-1.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── transcribe │ │ └── 2017-10-26 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── transfer │ │ └── 2018-11-05 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── translate │ │ └── 2017-07-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── voice-id │ │ └── 2021-09-27 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── vpc-lattice │ │ └── 2022-11-30 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── waf-regional │ │ └── 2016-11-28 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── waf │ │ └── 2015-08-24 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── wafv2 │ │ └── 2019-07-29 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── wellarchitected │ │ └── 2020-03-31 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── wisdom │ │ └── 2020-10-19 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── workdocs │ │ └── 2016-05-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── worklink │ │ └── 2018-09-25 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── workmail │ │ └── 2017-10-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── workmailmessageflow │ │ └── 2019-05-01 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── workspaces-web │ │ └── 2020-07-08 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ ├── workspaces │ │ └── 2015-04-08 │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ └── xray │ │ └── 2016-04-12 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php │ ├── drs │ ├── Exception │ │ └── drsException.php │ └── drsClient.php │ ├── finspace │ ├── Exception │ │ └── finspaceException.php │ └── finspaceClient.php │ ├── functions.php │ ├── imagebuilder │ ├── Exception │ │ └── imagebuilderException.php │ └── imagebuilderClient.php │ ├── ivschat │ ├── Exception │ │ └── ivschatException.php │ └── ivschatClient.php │ ├── kendra │ ├── Exception │ │ └── kendraException.php │ └── kendraClient.php │ ├── mgn │ ├── Exception │ │ └── mgnException.php │ └── mgnClient.php │ └── signer │ ├── Exception │ └── signerException.php │ └── signerClient.php ├── baidubce └── bce-sdk-php │ ├── .gitattributes │ ├── BosClientSample.php │ ├── LICENSE │ ├── PharBuilder.php │ ├── SampleConf.php │ ├── composer.json │ ├── index.php │ ├── phpunit.xml │ └── src │ └── BaiduBce │ ├── Auth │ ├── BceV1Signer.php │ ├── SignOptions.php │ └── SignerInterface.php │ ├── Bce.php │ ├── BceBaseClient.php │ ├── BceClientConfigOptions.php │ ├── BceHttpResponse.php │ ├── Exception │ ├── BceBaseException.php │ ├── BceClientException.php │ └── BceServiceException.php │ ├── Http │ ├── BceHttpClient.php │ ├── GuzzleLogAdapter.php │ ├── HttpContentTypes.php │ ├── HttpHeaders.php │ └── HttpMethod.php │ ├── Log │ ├── LogFactory.php │ ├── LogFactoryInterface.php │ ├── MonoLogFactory.php │ └── NullLogFactory.php │ ├── Services │ ├── Bos │ │ ├── BosClient.php │ │ ├── BosOptions.php │ │ ├── CannedAcl.php │ │ └── StorageClass.php │ ├── Lss │ │ └── LssClient.php │ ├── Media │ │ └── MediaClient.php │ ├── Sts │ │ └── StsClient.php │ └── Vod │ │ └── VodClient.php │ └── Util │ ├── DateUtils.php │ ├── GenerateMimeTypes.php │ ├── HashUtils.php │ ├── HttpUtils.php │ ├── MimeTypes.php │ ├── StringUtils.php │ └── mime.types.php ├── bin ├── generate_vcards ├── jp.php ├── naturalselection ├── sabredav ├── var-dump-server └── vobject ├── cloudinary └── cloudinary_php │ ├── .github │ ├── ISSUE_TEMPLATE │ │ ├── bug_report.md │ │ └── feature_request.md │ └── pull_request_template.md │ ├── .gitignore │ ├── .htaccess │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── autoload.php │ ├── composer.json │ ├── composer.lock │ ├── phpcs.xml │ ├── phpunit.php │ ├── phpunit.xml.dist │ ├── samples │ ├── PhotoAlbum │ │ ├── .gitignore │ │ ├── autoloader.php │ │ ├── files │ │ │ └── .htaccess │ │ ├── lib │ │ │ ├── cloudinary_cors.html │ │ │ ├── rb-license.txt │ │ │ └── rb.php │ │ ├── list.php │ │ ├── main.php │ │ ├── settings.php.sample │ │ ├── style.css │ │ ├── upload.php │ │ ├── upload_backend.php │ │ └── upload_complete.php │ ├── README.md │ └── basic │ │ ├── .gitignore │ │ ├── basic.php │ │ ├── lake.jpg │ │ ├── pizza.jpg │ │ └── settings.php.sample │ ├── src │ ├── Api.php │ ├── Api │ │ ├── AlreadyExists.php │ │ ├── AuthorizationRequired.php │ │ ├── BadRequest.php │ │ ├── Error.php │ │ ├── GeneralError.php │ │ ├── NotAllowed.php │ │ ├── NotFound.php │ │ ├── RateLimited.php │ │ └── Response.php │ ├── AuthToken.php │ ├── Cache │ │ ├── Adapter │ │ │ ├── CacheAdapter.php │ │ │ └── KeyValueCacheAdapter.php │ │ ├── ResponsiveBreakpointsCache.php │ │ └── Storage │ │ │ ├── FileSystemKeyValueStorage.php │ │ │ └── KeyValueStorage.php │ ├── Cloudinary.php │ ├── CloudinaryField.php │ ├── Error.php │ ├── Helpers.php │ ├── HttpClient.php │ ├── PreloadedFile.php │ ├── Search.php │ ├── SignatureVerifier.php │ ├── Uploader.php │ ├── Utils │ │ └── Singleton.php │ └── cacert.pem │ ├── tests │ ├── .htaccess │ ├── ApiTest.php │ ├── ArchiveTest.php │ ├── AuthTokenTest.php │ ├── Cache │ │ ├── Adapter │ │ │ └── KeyValueCacheAdapterTest.php │ │ ├── ResponsiveBreakpointsCacheTest.php │ │ └── Storage │ │ │ ├── DummyCacheStorage.php │ │ │ └── FileSystemKeyValueStorageTest.php │ ├── CloudinaryFieldTest.php │ ├── CloudinaryTest.php │ ├── ConfigTest.php │ ├── HelpersTest.php │ ├── HttpClientTest.php │ ├── MetadataTest.php │ ├── SearchTest.php │ ├── SignatureVerifierTest.php │ ├── TagTest.php │ ├── TestHelper.php │ ├── UploaderTest.php │ ├── docx.docx │ ├── favicon.ico │ └── logo.png │ └── tools │ ├── allocate_test_cloud.sh │ ├── get_test_cloud.sh │ └── update_version.sh ├── composer ├── ClassLoader.php ├── InstalledVersions.php ├── LICENSE ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php ├── installed.json ├── installed.php ├── platform_check.php ├── tmp-0019ae23fea3ca2756082577df5bd8e2 ├── tmp-05e2d312d136e3640cd55cf66d62ec89 ├── tmp-06dbb2d1c405d38891677ed879859cca ├── tmp-2b1cc29132a61fb9a617565257a71b67 ├── tmp-341074f771c4fe6c3107af300a887cc1 ├── tmp-37615c21c60e4ebf3f0f1c0604e272da ├── tmp-4f86c9f1d58712e3880fa638fd5c8c51 ├── tmp-75b2b0aa78134894c23b4d1172538780 ├── tmp-7a45487a42b0ba2f1787740ab143a4f0 ├── tmp-7ba143f1f9c1e4f739722c09a4c1f94a ├── tmp-852461be562ded5e0fa876af977ce86d ├── tmp-9638ef4af75cf0a01eb24268b7580340 ├── tmp-c1164517e4b6735e7acf9d670e66c6b2 ├── tmp-e20d820e6d90cd19e1e575b25f27a99e └── tmp-ec8e516bf89ce99549d43cccd918732c ├── graham-campbell └── guzzle-factory │ ├── LICENSE │ ├── composer.json │ └── src │ └── GuzzleFactory.php ├── guzzle └── guzzle │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── UPGRADING.md │ ├── build.xml │ ├── composer.json │ ├── docs │ ├── Makefile │ ├── _downloads │ │ └── guzzle-schema-1.0.json │ ├── _static │ │ ├── guzzle-icon.png │ │ ├── homepage.css │ │ ├── logo.png │ │ ├── prettify.css │ │ └── prettify.js │ ├── _templates │ │ ├── index.html │ │ ├── leftbar.html │ │ └── nav_links.html │ ├── batching │ │ └── batching.rst │ ├── conf.py │ ├── docs.rst │ ├── getting-started │ │ ├── faq.rst │ │ ├── installation.rst │ │ └── overview.rst │ ├── http-client │ │ ├── client.rst │ │ ├── entity-bodies.rst │ │ ├── http-redirects.rst │ │ ├── request.rst │ │ ├── response.rst │ │ └── uri-templates.rst │ ├── index.rst │ ├── iterators │ │ ├── guzzle-iterators.rst │ │ └── resource-iterators.rst │ ├── plugins │ │ ├── async-plugin.rst │ │ ├── backoff-plugin.rst │ │ ├── cache-plugin.rst │ │ ├── cookie-plugin.rst │ │ ├── creating-plugins.rst │ │ ├── curl-auth-plugin.rst │ │ ├── history-plugin.rst │ │ ├── log-plugin.rst │ │ ├── md5-validator-plugin.rst │ │ ├── mock-plugin.rst │ │ ├── oauth-plugin.rst │ │ ├── plugins-list.rst.inc │ │ └── plugins-overview.rst │ ├── requirements.txt │ ├── testing │ │ └── unit-testing.rst │ └── webservice-client │ │ ├── guzzle-service-descriptions.rst │ │ ├── using-the-service-builder.rst │ │ └── webservice-client.rst │ ├── phar-stub.php │ ├── phing │ ├── build.properties.dist │ ├── imports │ │ ├── dependencies.xml │ │ └── deploy.xml │ └── tasks │ │ ├── ComposerLintTask.php │ │ ├── GuzzlePearPharPackageTask.php │ │ └── GuzzleSubSplitTask.php │ ├── phpunit.xml.dist │ ├── src │ └── Guzzle │ │ ├── Batch │ │ ├── AbstractBatchDecorator.php │ │ ├── Batch.php │ │ ├── BatchBuilder.php │ │ ├── BatchClosureDivisor.php │ │ ├── BatchClosureTransfer.php │ │ ├── BatchCommandTransfer.php │ │ ├── BatchDivisorInterface.php │ │ ├── BatchInterface.php │ │ ├── BatchRequestTransfer.php │ │ ├── BatchSizeDivisor.php │ │ ├── BatchTransferInterface.php │ │ ├── Exception │ │ │ └── BatchTransferException.php │ │ ├── ExceptionBufferingBatch.php │ │ ├── FlushingBatch.php │ │ ├── HistoryBatch.php │ │ ├── NotifyingBatch.php │ │ └── composer.json │ │ ├── Cache │ │ ├── AbstractCacheAdapter.php │ │ ├── CacheAdapterFactory.php │ │ ├── CacheAdapterInterface.php │ │ ├── ClosureCacheAdapter.php │ │ ├── DoctrineCacheAdapter.php │ │ ├── NullCacheAdapter.php │ │ ├── Zf1CacheAdapter.php │ │ ├── Zf2CacheAdapter.php │ │ └── composer.json │ │ ├── Common │ │ ├── AbstractHasDispatcher.php │ │ ├── Collection.php │ │ ├── Event.php │ │ ├── Exception │ │ │ ├── BadMethodCallException.php │ │ │ ├── ExceptionCollection.php │ │ │ ├── GuzzleException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── RuntimeException.php │ │ │ └── UnexpectedValueException.php │ │ ├── FromConfigInterface.php │ │ ├── HasDispatcherInterface.php │ │ ├── ToArrayInterface.php │ │ ├── Version.php │ │ └── composer.json │ │ ├── Http │ │ ├── AbstractEntityBodyDecorator.php │ │ ├── CachingEntityBody.php │ │ ├── Client.php │ │ ├── ClientInterface.php │ │ ├── Curl │ │ │ ├── CurlHandle.php │ │ │ ├── CurlMulti.php │ │ │ ├── CurlMultiInterface.php │ │ │ ├── CurlMultiProxy.php │ │ │ ├── CurlVersion.php │ │ │ └── RequestMediator.php │ │ ├── EntityBody.php │ │ ├── EntityBodyInterface.php │ │ ├── Exception │ │ │ ├── BadResponseException.php │ │ │ ├── ClientErrorResponseException.php │ │ │ ├── CouldNotRewindStreamException.php │ │ │ ├── CurlException.php │ │ │ ├── HttpException.php │ │ │ ├── MultiTransferException.php │ │ │ ├── RequestException.php │ │ │ ├── ServerErrorResponseException.php │ │ │ └── TooManyRedirectsException.php │ │ ├── IoEmittingEntityBody.php │ │ ├── Message │ │ │ ├── AbstractMessage.php │ │ │ ├── EntityEnclosingRequest.php │ │ │ ├── EntityEnclosingRequestInterface.php │ │ │ ├── Header.php │ │ │ ├── Header │ │ │ │ ├── CacheControl.php │ │ │ │ ├── HeaderCollection.php │ │ │ │ ├── HeaderFactory.php │ │ │ │ ├── HeaderFactoryInterface.php │ │ │ │ ├── HeaderInterface.php │ │ │ │ └── Link.php │ │ │ ├── MessageInterface.php │ │ │ ├── PostFile.php │ │ │ ├── PostFileInterface.php │ │ │ ├── Request.php │ │ │ ├── RequestFactory.php │ │ │ ├── RequestFactoryInterface.php │ │ │ ├── RequestInterface.php │ │ │ └── Response.php │ │ ├── Mimetypes.php │ │ ├── QueryAggregator │ │ │ ├── CommaAggregator.php │ │ │ ├── DuplicateAggregator.php │ │ │ ├── PhpAggregator.php │ │ │ └── QueryAggregatorInterface.php │ │ ├── QueryString.php │ │ ├── ReadLimitEntityBody.php │ │ ├── RedirectPlugin.php │ │ ├── Resources │ │ │ └── cacert.pem │ │ ├── StaticClient.php │ │ ├── Url.php │ │ └── composer.json │ │ ├── Inflection │ │ ├── Inflector.php │ │ ├── InflectorInterface.php │ │ ├── MemoizingInflector.php │ │ ├── PreComputedInflector.php │ │ └── composer.json │ │ ├── Iterator │ │ ├── AppendIterator.php │ │ ├── ChunkedIterator.php │ │ ├── FilterIterator.php │ │ ├── MapIterator.php │ │ ├── MethodProxyIterator.php │ │ ├── README.md │ │ └── composer.json │ │ ├── Log │ │ ├── AbstractLogAdapter.php │ │ ├── ArrayLogAdapter.php │ │ ├── ClosureLogAdapter.php │ │ ├── LogAdapterInterface.php │ │ ├── MessageFormatter.php │ │ ├── MonologLogAdapter.php │ │ ├── PsrLogAdapter.php │ │ ├── Zf1LogAdapter.php │ │ ├── Zf2LogAdapter.php │ │ └── composer.json │ │ ├── Parser │ │ ├── Cookie │ │ │ ├── CookieParser.php │ │ │ └── CookieParserInterface.php │ │ ├── Message │ │ │ ├── AbstractMessageParser.php │ │ │ ├── MessageParser.php │ │ │ ├── MessageParserInterface.php │ │ │ └── PeclHttpMessageParser.php │ │ ├── ParserRegistry.php │ │ ├── UriTemplate │ │ │ ├── PeclUriTemplate.php │ │ │ ├── UriTemplate.php │ │ │ └── UriTemplateInterface.php │ │ ├── Url │ │ │ ├── UrlParser.php │ │ │ └── UrlParserInterface.php │ │ └── composer.json │ │ ├── Plugin │ │ ├── Async │ │ │ ├── AsyncPlugin.php │ │ │ └── composer.json │ │ ├── Backoff │ │ │ ├── AbstractBackoffStrategy.php │ │ │ ├── AbstractErrorCodeBackoffStrategy.php │ │ │ ├── BackoffLogger.php │ │ │ ├── BackoffPlugin.php │ │ │ ├── BackoffStrategyInterface.php │ │ │ ├── CallbackBackoffStrategy.php │ │ │ ├── ConstantBackoffStrategy.php │ │ │ ├── CurlBackoffStrategy.php │ │ │ ├── ExponentialBackoffStrategy.php │ │ │ ├── HttpBackoffStrategy.php │ │ │ ├── LinearBackoffStrategy.php │ │ │ ├── ReasonPhraseBackoffStrategy.php │ │ │ ├── TruncatedBackoffStrategy.php │ │ │ └── composer.json │ │ ├── Cache │ │ │ ├── CacheKeyProviderInterface.php │ │ │ ├── CachePlugin.php │ │ │ ├── CacheStorageInterface.php │ │ │ ├── CallbackCanCacheStrategy.php │ │ │ ├── CanCacheStrategyInterface.php │ │ │ ├── DefaultCacheKeyProvider.php │ │ │ ├── DefaultCacheStorage.php │ │ │ ├── DefaultCanCacheStrategy.php │ │ │ ├── DefaultRevalidation.php │ │ │ ├── DenyRevalidation.php │ │ │ ├── RevalidationInterface.php │ │ │ ├── SkipRevalidation.php │ │ │ └── composer.json │ │ ├── Cookie │ │ │ ├── Cookie.php │ │ │ ├── CookieJar │ │ │ │ ├── ArrayCookieJar.php │ │ │ │ ├── CookieJarInterface.php │ │ │ │ └── FileCookieJar.php │ │ │ ├── CookiePlugin.php │ │ │ ├── Exception │ │ │ │ └── InvalidCookieException.php │ │ │ └── composer.json │ │ ├── CurlAuth │ │ │ ├── CurlAuthPlugin.php │ │ │ └── composer.json │ │ ├── ErrorResponse │ │ │ ├── ErrorResponseExceptionInterface.php │ │ │ ├── ErrorResponsePlugin.php │ │ │ ├── Exception │ │ │ │ └── ErrorResponseException.php │ │ │ └── composer.json │ │ ├── History │ │ │ ├── HistoryPlugin.php │ │ │ └── composer.json │ │ ├── Log │ │ │ ├── LogPlugin.php │ │ │ └── composer.json │ │ ├── Md5 │ │ │ ├── CommandContentMd5Plugin.php │ │ │ ├── Md5ValidatorPlugin.php │ │ │ └── composer.json │ │ ├── Mock │ │ │ ├── MockPlugin.php │ │ │ └── composer.json │ │ ├── Oauth │ │ │ ├── OauthPlugin.php │ │ │ └── composer.json │ │ └── composer.json │ │ ├── Service │ │ ├── AbstractConfigLoader.php │ │ ├── Builder │ │ │ ├── ServiceBuilder.php │ │ │ ├── ServiceBuilderInterface.php │ │ │ └── ServiceBuilderLoader.php │ │ ├── CachingConfigLoader.php │ │ ├── Client.php │ │ ├── ClientInterface.php │ │ ├── Command │ │ │ ├── AbstractCommand.php │ │ │ ├── ClosureCommand.php │ │ │ ├── CommandInterface.php │ │ │ ├── CreateResponseClassEvent.php │ │ │ ├── DefaultRequestSerializer.php │ │ │ ├── DefaultResponseParser.php │ │ │ ├── Factory │ │ │ │ ├── AliasFactory.php │ │ │ │ ├── CompositeFactory.php │ │ │ │ ├── ConcreteClassFactory.php │ │ │ │ ├── FactoryInterface.php │ │ │ │ ├── MapFactory.php │ │ │ │ └── ServiceDescriptionFactory.php │ │ │ ├── LocationVisitor │ │ │ │ ├── Request │ │ │ │ │ ├── AbstractRequestVisitor.php │ │ │ │ │ ├── BodyVisitor.php │ │ │ │ │ ├── HeaderVisitor.php │ │ │ │ │ ├── JsonVisitor.php │ │ │ │ │ ├── PostFieldVisitor.php │ │ │ │ │ ├── PostFileVisitor.php │ │ │ │ │ ├── QueryVisitor.php │ │ │ │ │ ├── RequestVisitorInterface.php │ │ │ │ │ ├── ResponseBodyVisitor.php │ │ │ │ │ └── XmlVisitor.php │ │ │ │ ├── Response │ │ │ │ │ ├── AbstractResponseVisitor.php │ │ │ │ │ ├── BodyVisitor.php │ │ │ │ │ ├── HeaderVisitor.php │ │ │ │ │ ├── JsonVisitor.php │ │ │ │ │ ├── ReasonPhraseVisitor.php │ │ │ │ │ ├── ResponseVisitorInterface.php │ │ │ │ │ ├── StatusCodeVisitor.php │ │ │ │ │ └── XmlVisitor.php │ │ │ │ └── VisitorFlyweight.php │ │ │ ├── OperationCommand.php │ │ │ ├── OperationResponseParser.php │ │ │ ├── RequestSerializerInterface.php │ │ │ ├── ResponseClassInterface.php │ │ │ └── ResponseParserInterface.php │ │ ├── ConfigLoaderInterface.php │ │ ├── Description │ │ │ ├── Operation.php │ │ │ ├── OperationInterface.php │ │ │ ├── Parameter.php │ │ │ ├── SchemaFormatter.php │ │ │ ├── SchemaValidator.php │ │ │ ├── ServiceDescription.php │ │ │ ├── ServiceDescriptionInterface.php │ │ │ ├── ServiceDescriptionLoader.php │ │ │ └── ValidatorInterface.php │ │ ├── Exception │ │ │ ├── CommandException.php │ │ │ ├── CommandTransferException.php │ │ │ ├── DescriptionBuilderException.php │ │ │ ├── InconsistentClientTransferException.php │ │ │ ├── ResponseClassException.php │ │ │ ├── ServiceBuilderException.php │ │ │ ├── ServiceNotFoundException.php │ │ │ └── ValidationException.php │ │ ├── Resource │ │ │ ├── AbstractResourceIteratorFactory.php │ │ │ ├── CompositeResourceIteratorFactory.php │ │ │ ├── MapResourceIteratorFactory.php │ │ │ ├── Model.php │ │ │ ├── ResourceIterator.php │ │ │ ├── ResourceIteratorApplyBatched.php │ │ │ ├── ResourceIteratorClassFactory.php │ │ │ ├── ResourceIteratorFactoryInterface.php │ │ │ └── ResourceIteratorInterface.php │ │ └── composer.json │ │ └── Stream │ │ ├── PhpStreamRequestFactory.php │ │ ├── Stream.php │ │ ├── StreamInterface.php │ │ ├── StreamRequestFactoryInterface.php │ │ └── composer.json │ └── tests │ ├── Guzzle │ └── Tests │ │ ├── Batch │ │ ├── AbstractBatchDecoratorTest.php │ │ ├── BatchBuilderTest.php │ │ ├── BatchClosureDivisorTest.php │ │ ├── BatchClosureTransferTest.php │ │ ├── BatchCommandTransferTest.php │ │ ├── BatchRequestTransferTest.php │ │ ├── BatchSizeDivisorTest.php │ │ ├── BatchTest.php │ │ ├── ExceptionBufferingBatchTest.php │ │ ├── FlushingBatchTest.php │ │ ├── HistoryBatchTest.php │ │ └── NotifyingBatchTest.php │ │ ├── Cache │ │ ├── CacheAdapterFactoryTest.php │ │ ├── CacheAdapterTest.php │ │ ├── ClosureCacheAdapterTest.php │ │ ├── NullCacheAdapterTest.php │ │ └── Zf2CacheAdapterTest.php │ │ ├── Common │ │ ├── AbstractHasDispatcherTest.php │ │ ├── CollectionTest.php │ │ ├── EventTest.php │ │ ├── Exception │ │ │ ├── BatchTransferExceptionTest.php │ │ │ └── ExceptionCollectionTest.php │ │ └── VersionTest.php │ │ ├── GuzzleTestCase.php │ │ ├── Http │ │ ├── AbstractEntityBodyDecoratorTest.php │ │ ├── CachingEntityBodyTest.php │ │ ├── ClientTest.php │ │ ├── Curl │ │ │ ├── CurlHandleTest.php │ │ │ ├── CurlMultiProxyTest.php │ │ │ ├── CurlMultiTest.php │ │ │ ├── CurlVersionTest.php │ │ │ └── RequestMediatorTest.php │ │ ├── EntityBodyTest.php │ │ ├── Exception │ │ │ ├── CurlExceptionTest.php │ │ │ ├── ExceptionTest.php │ │ │ └── MultiTransferExceptionTest.php │ │ ├── IoEmittingEntityBodyTest.php │ │ ├── Message │ │ │ ├── AbstractMessageTest.php │ │ │ ├── EntityEnclosingRequestTest.php │ │ │ ├── Header │ │ │ │ ├── HeaderFactoryTest.php │ │ │ │ └── LinkTest.php │ │ │ ├── HeaderComparison.php │ │ │ ├── HeaderComparisonTest.php │ │ │ ├── HeaderTest.php │ │ │ ├── PostFileTest.php │ │ │ ├── RequestFactoryTest.php │ │ │ ├── RequestTest.php │ │ │ └── ResponseTest.php │ │ ├── MimetypesTest.php │ │ ├── QueryAggregator │ │ │ ├── CommaAggregatorTest.php │ │ │ ├── DuplicateAggregatorTest.php │ │ │ └── PhpAggregatorTest.php │ │ ├── QueryStringTest.php │ │ ├── ReadLimitEntityBodyTest.php │ │ ├── RedirectPluginTest.php │ │ ├── Server.php │ │ ├── StaticClientTest.php │ │ ├── UrlTest.php │ │ └── server.js │ │ ├── Inflection │ │ ├── InflectorTest.php │ │ ├── MemoizingInflectorTest.php │ │ └── PreComputedInflectorTest.php │ │ ├── Iterator │ │ ├── AppendIteratorTest.php │ │ ├── ChunkedIteratorTest.php │ │ ├── FilterIteratorTest.php │ │ ├── MapIteratorTest.php │ │ └── MethodProxyIteratorTest.php │ │ ├── Log │ │ ├── ArrayLogAdapterTest.php │ │ ├── ClosureLogAdapterTest.php │ │ ├── MessageFormatterTest.php │ │ ├── PsrLogAdapterTest.php │ │ └── Zf2LogAdapterTest.php │ │ ├── Mock │ │ ├── CustomResponseModel.php │ │ ├── ErrorResponseMock.php │ │ ├── ExceptionMock.php │ │ ├── MockMulti.php │ │ ├── MockObserver.php │ │ └── MockSubject.php │ │ ├── Parser │ │ ├── Cookie │ │ │ ├── CookieParserProvider.php │ │ │ └── CookieParserTest.php │ │ ├── Message │ │ │ ├── MessageParserProvider.php │ │ │ ├── MessageParserTest.php │ │ │ └── PeclHttpMessageParserTest.php │ │ ├── ParserRegistryTest.php │ │ └── UriTemplate │ │ │ ├── AbstractUriTemplateTest.php │ │ │ ├── PeclUriTemplateTest.php │ │ │ └── UriTemplateTest.php │ │ ├── Plugin │ │ ├── Async │ │ │ └── AsyncPluginTest.php │ │ ├── Backoff │ │ │ ├── AbstractBackoffStrategyTest.php │ │ │ ├── BackoffLoggerTest.php │ │ │ ├── BackoffPluginTest.php │ │ │ ├── CallbackBackoffStrategyTest.php │ │ │ ├── ConstantBackoffStrategyTest.php │ │ │ ├── CurlBackoffStrategyTest.php │ │ │ ├── ExponentialBackoffStrategyTest.php │ │ │ ├── HttpBackoffStrategyTest.php │ │ │ ├── LinearBackoffStrategyTest.php │ │ │ ├── ReasonPhraseBackoffStrategyTest.php │ │ │ └── TruncatedBackoffStrategyTest.php │ │ ├── Cache │ │ │ ├── CachePluginTest.php │ │ │ ├── CallbackCanCacheStrategyTest.php │ │ │ ├── DefaultCacheStorageTest.php │ │ │ ├── DefaultCanCacheStrategyTest.php │ │ │ ├── DefaultRevalidationTest.php │ │ │ ├── DenyRevalidationTest.php │ │ │ └── SkipRevalidationTest.php │ │ ├── Cookie │ │ │ ├── CookieJar │ │ │ │ ├── ArrayCookieJarTest.php │ │ │ │ └── FileCookieJarTest.php │ │ │ ├── CookiePluginTest.php │ │ │ └── CookieTest.php │ │ ├── CurlAuth │ │ │ └── CurlAuthPluginTest.php │ │ ├── ErrorResponse │ │ │ └── ErrorResponsePluginTest.php │ │ ├── History │ │ │ └── HistoryPluginTest.php │ │ ├── Log │ │ │ └── LogPluginTest.php │ │ ├── Md5 │ │ │ ├── CommandContentMd5PluginTest.php │ │ │ └── Md5ValidatorPluginTest.php │ │ ├── Mock │ │ │ └── MockPluginTest.php │ │ └── Oauth │ │ │ └── OauthPluginTest.php │ │ ├── Service │ │ ├── AbstractConfigLoaderTest.php │ │ ├── Builder │ │ │ ├── ServiceBuilderLoaderTest.php │ │ │ └── ServiceBuilderTest.php │ │ ├── CachingConfigLoaderTest.php │ │ ├── ClientTest.php │ │ ├── Command │ │ │ ├── AbstractCommandTest.php │ │ │ ├── ClosureCommandTest.php │ │ │ ├── CommandTest.php │ │ │ ├── DefaultRequestSerializerTest.php │ │ │ ├── DefaultResponseParserTest.php │ │ │ ├── Factory │ │ │ │ ├── AliasFactoryTest.php │ │ │ │ ├── CompositeFactoryTest.php │ │ │ │ ├── ConcreteClassFactoryTest.php │ │ │ │ ├── MapFactoryTest.php │ │ │ │ └── ServiceDescriptionFactoryTest.php │ │ │ ├── LocationVisitor │ │ │ │ ├── Request │ │ │ │ │ ├── AbstractVisitorTestCase.php │ │ │ │ │ ├── BodyVisitorTest.php │ │ │ │ │ ├── HeaderVisitorTest.php │ │ │ │ │ ├── JsonVisitorTest.php │ │ │ │ │ ├── PostFieldVisitorTest.php │ │ │ │ │ ├── PostFileVisitorTest.php │ │ │ │ │ ├── QueryVisitorTest.php │ │ │ │ │ ├── ResponseBodyVisitorTest.php │ │ │ │ │ └── XmlVisitorTest.php │ │ │ │ ├── Response │ │ │ │ │ ├── AbstractResponseVisitorTest.php │ │ │ │ │ ├── BodyVisitorTest.php │ │ │ │ │ ├── HeaderVisitorTest.php │ │ │ │ │ ├── JsonVisitorTest.php │ │ │ │ │ ├── ReasonPhraseVisitorTest.php │ │ │ │ │ ├── StatusCodeVisitorTest.php │ │ │ │ │ └── XmlVisitorTest.php │ │ │ │ └── VisitorFlyweightTest.php │ │ │ ├── OperationCommandTest.php │ │ │ └── OperationResponseParserTest.php │ │ ├── Description │ │ │ ├── OperationTest.php │ │ │ ├── ParameterTest.php │ │ │ ├── SchemaFormatterTest.php │ │ │ ├── SchemaValidatorTest.php │ │ │ ├── ServiceDescriptionLoaderTest.php │ │ │ └── ServiceDescriptionTest.php │ │ ├── Exception │ │ │ ├── CommandTransferExceptionTest.php │ │ │ ├── InconsistentClientTransferExceptionTest.php │ │ │ └── ValidationExceptionTest.php │ │ ├── Mock │ │ │ ├── Command │ │ │ │ ├── IterableCommand.php │ │ │ │ ├── MockCommand.php │ │ │ │ ├── OtherCommand.php │ │ │ │ └── Sub │ │ │ │ │ └── Sub.php │ │ │ ├── MockClient.php │ │ │ └── Model │ │ │ │ └── MockCommandIterator.php │ │ └── Resource │ │ │ ├── CompositeResourceIteratorFactoryTest.php │ │ │ ├── MapResourceIteratorFactoryTest.php │ │ │ ├── ModelTest.php │ │ │ ├── ResourceIteratorClassFactoryTest.php │ │ │ └── ResourceIteratorTest.php │ │ ├── Stream │ │ ├── PhpStreamRequestFactoryTest.php │ │ └── StreamTest.php │ │ └── TestData │ │ ├── FileBody.txt │ │ ├── description │ │ ├── bar.json │ │ ├── baz.json │ │ ├── foo.json │ │ └── recursive.json │ │ ├── mock_response │ │ ├── services │ │ ├── json1.json │ │ ├── json2.json │ │ └── services.json │ │ ├── test_service.json │ │ ├── test_service2.json │ │ └── test_service_3.json │ └── bootstrap.php ├── guzzlehttp ├── command │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Command.php │ │ ├── CommandInterface.php │ │ ├── Exception │ │ ├── CommandClientException.php │ │ ├── CommandException.php │ │ └── CommandServerException.php │ │ ├── HasDataTrait.php │ │ ├── Result.php │ │ ├── ResultInterface.php │ │ ├── ServiceClient.php │ │ ├── ServiceClientInterface.php │ │ └── ToArrayInterface.php ├── guzzle-services │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ ├── Description.php │ │ ├── DescriptionInterface.php │ │ ├── Deserializer.php │ │ ├── GuzzleClient.php │ │ ├── Handler │ │ │ └── ValidatedDescriptionHandler.php │ │ ├── Operation.php │ │ ├── Parameter.php │ │ ├── QuerySerializer │ │ │ ├── QuerySerializerInterface.php │ │ │ └── Rfc3986Serializer.php │ │ ├── RequestLocation │ │ │ ├── AbstractLocation.php │ │ │ ├── BodyLocation.php │ │ │ ├── FormParamLocation.php │ │ │ ├── HeaderLocation.php │ │ │ ├── JsonLocation.php │ │ │ ├── MultiPartLocation.php │ │ │ ├── QueryLocation.php │ │ │ ├── RequestLocationInterface.php │ │ │ └── XmlLocation.php │ │ ├── ResponseLocation │ │ │ ├── AbstractLocation.php │ │ │ ├── BodyLocation.php │ │ │ ├── HeaderLocation.php │ │ │ ├── JsonLocation.php │ │ │ ├── ReasonPhraseLocation.php │ │ │ ├── ResponseLocationInterface.php │ │ │ ├── StatusCodeLocation.php │ │ │ └── XmlLocation.php │ │ ├── SchemaFormatter.php │ │ ├── SchemaValidator.php │ │ └── Serializer.php │ └── tests │ │ ├── Asset │ │ ├── Exception │ │ │ ├── CustomCommandException.php │ │ │ └── OtherCustomCommandException.php │ │ └── test.html │ │ ├── DescriptionTest.php │ │ ├── DeserializerTest.php │ │ ├── GuzzleClientTest.php │ │ ├── Handler │ │ └── ValidatedDescriptionHandlerTest.php │ │ ├── OperationTest.php │ │ ├── ParameterTest.php │ │ ├── QuerySerializer │ │ └── Rfc3986SerializerTest.php │ │ ├── RequestLocation │ │ ├── BodyLocationTest.php │ │ ├── FormParamLocationTest.php │ │ ├── HeaderLocationTest.php │ │ ├── JsonLocationTest.php │ │ ├── MultiPartLocationTest.php │ │ ├── QueryLocationTest.php │ │ └── XmlLocationTest.php │ │ ├── ResponseLocation │ │ ├── BodyLocationTest.php │ │ ├── HeaderLocationTest.php │ │ ├── JsonLocationTest.php │ │ ├── ReasonPhraseLocationTest.php │ │ ├── StatusCodeLocationTest.php │ │ └── XmlLocationTest.php │ │ ├── SchemaFormatterTest.php │ │ ├── SchemaValidatorTest.php │ │ └── SerializerTest.php ├── guzzle │ ├── .php_cs │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── UPGRADING.md │ ├── composer.json │ └── src │ │ ├── Client.php │ │ ├── ClientInterface.php │ │ ├── Cookie │ │ ├── CookieJar.php │ │ ├── CookieJarInterface.php │ │ ├── FileCookieJar.php │ │ ├── SessionCookieJar.php │ │ └── SetCookie.php │ │ ├── Exception │ │ ├── BadResponseException.php │ │ ├── ClientException.php │ │ ├── ConnectException.php │ │ ├── GuzzleException.php │ │ ├── InvalidArgumentException.php │ │ ├── RequestException.php │ │ ├── SeekException.php │ │ ├── ServerException.php │ │ ├── TooManyRedirectsException.php │ │ └── TransferException.php │ │ ├── Handler │ │ ├── CurlFactory.php │ │ ├── CurlFactoryInterface.php │ │ ├── CurlHandler.php │ │ ├── CurlMultiHandler.php │ │ ├── EasyHandle.php │ │ ├── MockHandler.php │ │ ├── Proxy.php │ │ └── StreamHandler.php │ │ ├── HandlerStack.php │ │ ├── MessageFormatter.php │ │ ├── Middleware.php │ │ ├── Pool.php │ │ ├── PrepareBodyMiddleware.php │ │ ├── RedirectMiddleware.php │ │ ├── RequestOptions.php │ │ ├── RetryMiddleware.php │ │ ├── TransferStats.php │ │ ├── UriTemplate.php │ │ ├── Utils.php │ │ ├── functions.php │ │ └── functions_include.php ├── promises │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── AggregateException.php │ │ ├── CancellationException.php │ │ ├── Coroutine.php │ │ ├── Create.php │ │ ├── Each.php │ │ ├── EachPromise.php │ │ ├── FulfilledPromise.php │ │ ├── Is.php │ │ ├── Promise.php │ │ ├── PromiseInterface.php │ │ ├── PromisorInterface.php │ │ ├── RejectedPromise.php │ │ ├── RejectionException.php │ │ ├── TaskQueue.php │ │ ├── TaskQueueInterface.php │ │ ├── Utils.php │ │ ├── functions.php │ │ └── functions_include.php └── psr7 │ ├── .github │ ├── FUNDING.yml │ ├── stale.yml │ └── workflows │ │ ├── ci.yml │ │ ├── integration.yml │ │ └── static.yml │ ├── .php_cs.dist │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── AppendStream.php │ ├── BufferStream.php │ ├── CachingStream.php │ ├── DroppingStream.php │ ├── FnStream.php │ ├── Header.php │ ├── InflateStream.php │ ├── LazyOpenStream.php │ ├── LimitStream.php │ ├── Message.php │ ├── MessageTrait.php │ ├── MimeType.php │ ├── MultipartStream.php │ ├── NoSeekStream.php │ ├── PumpStream.php │ ├── Query.php │ ├── Request.php │ ├── Response.php │ ├── Rfc7230.php │ ├── ServerRequest.php │ ├── Stream.php │ ├── StreamDecoratorTrait.php │ ├── StreamWrapper.php │ ├── UploadedFile.php │ ├── Uri.php │ ├── UriComparator.php │ ├── UriNormalizer.php │ ├── UriResolver.php │ ├── Utils.php │ ├── functions.php │ └── functions_include.php ├── katzgrau └── klogger │ ├── .gitignore │ ├── README.markdown │ ├── composer.json │ ├── phpunit.xml │ ├── src │ └── Logger.php │ └── tests │ ├── LoggerTest.php │ └── logs │ └── .gitkeep ├── kunalvarma05 └── dropbox-php-sdk │ ├── .editorconfig │ ├── .gitignore │ ├── .php_cs │ ├── .scrutinizer.yml │ ├── .styleci.yml │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml │ ├── src │ └── Dropbox │ │ ├── Authentication │ │ ├── DropboxAuthHelper.php │ │ └── OAuth2Client.php │ │ ├── Dropbox.php │ │ ├── DropboxApp.php │ │ ├── DropboxClient.php │ │ ├── DropboxFile.php │ │ ├── DropboxRequest.php │ │ ├── DropboxResponse.php │ │ ├── DropboxResponseToFile.php │ │ ├── Exceptions │ │ └── DropboxClientException.php │ │ ├── Http │ │ ├── Clients │ │ │ ├── DropboxGuzzleHttpClient.php │ │ │ ├── DropboxHttpClientFactory.php │ │ │ └── DropboxHttpClientInterface.php │ │ ├── DropboxRawResponse.php │ │ ├── RequestBodyInterface.php │ │ ├── RequestBodyJsonEncoded.php │ │ └── RequestBodyStream.php │ │ ├── Models │ │ ├── AccessToken.php │ │ ├── Account.php │ │ ├── AccountList.php │ │ ├── BaseModel.php │ │ ├── CopyReference.php │ │ ├── DeletedMetadata.php │ │ ├── File.php │ │ ├── FileMetadata.php │ │ ├── FileSharingInfo.php │ │ ├── FolderMetadata.php │ │ ├── FolderSharingInfo.php │ │ ├── MediaInfo.php │ │ ├── MediaMetadata.php │ │ ├── MetadataCollection.php │ │ ├── ModelCollection.php │ │ ├── ModelFactory.php │ │ ├── ModelInterface.php │ │ ├── PhotoMetadata.php │ │ ├── SearchResult.php │ │ ├── SearchResults.php │ │ ├── TemporaryLink.php │ │ ├── Thumbnail.php │ │ └── VideoMetadata.php │ │ ├── Security │ │ ├── McryptRandomStringGenerator.php │ │ ├── OpenSslRandomStringGenerator.php │ │ ├── RandomStringGeneratorFactory.php │ │ ├── RandomStringGeneratorInterface.php │ │ └── RandomStringGeneratorTrait.php │ │ └── Store │ │ ├── PersistentDataStoreFactory.php │ │ ├── PersistentDataStoreInterface.php │ │ └── SessionPersistentDataStore.php │ └── tests │ ├── DropboxFileTest.php │ └── DropboxTest.php ├── microsoft └── microsoft-graph │ ├── .editorconfig │ ├── .github │ ├── CODEOWNERS │ ├── dependabot.yml │ ├── fabricbot.json │ └── workflows │ │ ├── bump-kiota-sdk-version.yml │ │ ├── bump-sdk-version.yml │ │ ├── pr-validation.yml │ │ ├── tag-release.yml │ │ └── update-docs.yml │ ├── .vscode │ └── launch.json │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── THIRD PARTY NOTICES │ ├── composer.json │ ├── msgraph-sdk-php.yml │ ├── phpdoc.dist.xml │ ├── phpstan.neon │ ├── phpunit.xml │ ├── scripts │ ├── BumpPreviewSdkVersion.php │ ├── BumpStableSdkVersion.php │ └── SdkVersionUtils.php │ ├── src │ ├── Beta │ │ └── Microsoft │ │ │ └── Graph │ │ │ ├── CallRecords │ │ │ └── Model │ │ │ │ ├── AudioCodec.php │ │ │ │ ├── CallRecord.php │ │ │ │ ├── CallType.php │ │ │ │ ├── ClientPlatform.php │ │ │ │ ├── ClientUserAgent.php │ │ │ │ ├── DeviceInfo.php │ │ │ │ ├── DirectRoutingLogRow.php │ │ │ │ ├── Endpoint.php │ │ │ │ ├── FailureInfo.php │ │ │ │ ├── FailureStage.php │ │ │ │ ├── FeedbackTokenSet.php │ │ │ │ ├── Media.php │ │ │ │ ├── MediaStream.php │ │ │ │ ├── MediaStreamDirection.php │ │ │ │ ├── Modality.php │ │ │ │ ├── NetworkConnectionType.php │ │ │ │ ├── NetworkInfo.php │ │ │ │ ├── NetworkTransportProtocol.php │ │ │ │ ├── ParticipantEndpoint.php │ │ │ │ ├── ProductFamily.php │ │ │ │ ├── PstnBlockedUsersLogRow.php │ │ │ │ ├── PstnCallDurationSource.php │ │ │ │ ├── PstnCallLogRow.php │ │ │ │ ├── PstnOnlineMeetingDialoutReport.php │ │ │ │ ├── PstnUserBlockMode.php │ │ │ │ ├── Segment.php │ │ │ │ ├── ServiceEndpoint.php │ │ │ │ ├── ServiceRole.php │ │ │ │ ├── ServiceUserAgent.php │ │ │ │ ├── Session.php │ │ │ │ ├── SmsLogRow.php │ │ │ │ ├── TraceRouteHop.php │ │ │ │ ├── UserAgent.php │ │ │ │ ├── UserFeedback.php │ │ │ │ ├── UserFeedbackRating.php │ │ │ │ ├── VideoCodec.php │ │ │ │ ├── WifiBand.php │ │ │ │ └── WifiRadioType.php │ │ │ ├── DeviceManagementNamespace │ │ │ └── Model │ │ │ │ ├── AggregationType.php │ │ │ │ ├── AlertImpact.php │ │ │ │ ├── AlertRecord.php │ │ │ │ ├── AlertRule.php │ │ │ │ ├── AlertRuleTemplate.php │ │ │ │ ├── AlertStatusType.php │ │ │ │ ├── Monitoring.php │ │ │ │ ├── NotificationChannel.php │ │ │ │ ├── NotificationChannelType.php │ │ │ │ ├── NotificationReceiver.php │ │ │ │ ├── OperatorType.php │ │ │ │ ├── PortalNotification.php │ │ │ │ ├── RuleSeverityType.php │ │ │ │ └── RuleThreshold.php │ │ │ ├── Ediscovery │ │ │ └── Model │ │ │ │ ├── AddToReviewSetOperation.php │ │ │ │ ├── AdditionalDataOptions.php │ │ │ │ ├── CaseAction.php │ │ │ │ ├── CaseExportOperation.php │ │ │ │ ├── CaseHoldOperation.php │ │ │ │ ├── CaseIndexOperation.php │ │ │ │ ├── CaseOperation.php │ │ │ │ ├── CaseOperationStatus.php │ │ │ │ ├── CaseSettings.php │ │ │ │ ├── CaseStatus.php │ │ │ │ ├── ChildSelectability.php │ │ │ │ ├── Custodian.php │ │ │ │ ├── CustodianStatus.php │ │ │ │ ├── DataSource.php │ │ │ │ ├── DataSourceContainer.php │ │ │ │ ├── DataSourceContainerStatus.php │ │ │ │ ├── DataSourceHoldStatus.php │ │ │ │ ├── DataSourceScopes.php │ │ │ │ ├── Ediscoveryroot.php │ │ │ │ ├── EstimateStatisticsOperation.php │ │ │ │ ├── ExportFileStructure.php │ │ │ │ ├── ExportOptions.php │ │ │ │ ├── GraphCase.php │ │ │ │ ├── LegalHold.php │ │ │ │ ├── LegalHoldStatus.php │ │ │ │ ├── NoncustodialDataSource.php │ │ │ │ ├── OcrSettings.php │ │ │ │ ├── PurgeDataOperation.php │ │ │ │ ├── RedundancyDetectionSettings.php │ │ │ │ ├── ReviewSet.php │ │ │ │ ├── ReviewSetQuery.php │ │ │ │ ├── SiteSource.php │ │ │ │ ├── SourceCollection.php │ │ │ │ ├── SourceType.php │ │ │ │ ├── Tag.php │ │ │ │ ├── TagOperation.php │ │ │ │ ├── TopicModelingSettings.php │ │ │ │ ├── UnifiedGroupSource.php │ │ │ │ └── UserSource.php │ │ │ ├── ExternalConnectors │ │ │ └── Model │ │ │ │ ├── AccessType.php │ │ │ │ ├── Acl.php │ │ │ │ ├── AclType.php │ │ │ │ ├── ActivitySettings.php │ │ │ │ ├── ComplianceSettings.php │ │ │ │ ├── Configuration.php │ │ │ │ ├── ConnectionOperation.php │ │ │ │ ├── ConnectionOperationStatus.php │ │ │ │ ├── ConnectionQuota.php │ │ │ │ ├── ConnectionState.php │ │ │ │ ├── ContentExperienceType.php │ │ │ │ ├── DisplayTemplate.php │ │ │ │ ├── External.php │ │ │ │ ├── ExternalActivity.php │ │ │ │ ├── ExternalActivityResult.php │ │ │ │ ├── ExternalActivityType.php │ │ │ │ ├── ExternalConnection.php │ │ │ │ ├── ExternalGroup.php │ │ │ │ ├── ExternalItem.php │ │ │ │ ├── ExternalItemContent.php │ │ │ │ ├── ExternalItemContentType.php │ │ │ │ ├── Identity.php │ │ │ │ ├── IdentitySourceType.php │ │ │ │ ├── IdentityType.php │ │ │ │ ├── ImportanceScore.php │ │ │ │ ├── ItemIdResolver.php │ │ │ │ ├── Label.php │ │ │ │ ├── Properties.php │ │ │ │ ├── Property.php │ │ │ │ ├── PropertyRule.php │ │ │ │ ├── PropertyType.php │ │ │ │ ├── RankingHint.php │ │ │ │ ├── RuleOperation.php │ │ │ │ ├── Schema.php │ │ │ │ ├── SearchSettings.php │ │ │ │ ├── UrlMatchInfo.php │ │ │ │ └── UrlToItemResolverBase.php │ │ │ ├── IdentityGovernanceNamespace │ │ │ └── Model │ │ │ │ ├── CustomTaskExtension.php │ │ │ │ ├── CustomTaskExtensionCallbackConfiguration.php │ │ │ │ ├── CustomTaskExtensionCallbackData.php │ │ │ │ ├── CustomTaskExtensionCalloutData.php │ │ │ │ ├── CustomTaskExtensionOperationStatus.php │ │ │ │ ├── LifecycleManagementSettings.php │ │ │ │ ├── LifecycleTaskCategory.php │ │ │ │ ├── LifecycleWorkflowCategory.php │ │ │ │ ├── LifecycleWorkflowProcessingStatus.php │ │ │ │ ├── LifecycleWorkflowsContainer.php │ │ │ │ ├── OnDemandExecutionOnly.php │ │ │ │ ├── Parameter.php │ │ │ │ ├── RuleBasedSubjectSet.php │ │ │ │ ├── Run.php │ │ │ │ ├── RunSummary.php │ │ │ │ ├── Task.php │ │ │ │ ├── TaskDefinition.php │ │ │ │ ├── TaskProcessingResult.php │ │ │ │ ├── TaskReport.php │ │ │ │ ├── TaskReportSummary.php │ │ │ │ ├── TimeBasedAttributeTrigger.php │ │ │ │ ├── TriggerAndScopeBasedConditions.php │ │ │ │ ├── UserProcessingResult.php │ │ │ │ ├── UserSummary.php │ │ │ │ ├── UsersProcessingSummary.php │ │ │ │ ├── ValueType.php │ │ │ │ ├── Workflow.php │ │ │ │ ├── WorkflowBase.php │ │ │ │ ├── WorkflowExecutionConditions.php │ │ │ │ ├── WorkflowExecutionTrigger.php │ │ │ │ ├── WorkflowExecutionType.php │ │ │ │ ├── WorkflowTemplate.php │ │ │ │ ├── WorkflowTriggerTimeBasedAttribute.php │ │ │ │ └── WorkflowVersion.php │ │ │ ├── IndustryData │ │ │ └── Model │ │ │ │ ├── AggregatedInboundStatistics.php │ │ │ │ ├── AzureDataLakeConnector.php │ │ │ │ ├── FileDataConnector.php │ │ │ │ ├── FileUploadSession.php │ │ │ │ ├── FileValidateOperation.php │ │ │ │ ├── IdentifierTypeReferenceValue.php │ │ │ │ ├── InboundActivityResults.php │ │ │ │ ├── InboundDomain.php │ │ │ │ ├── InboundFileFlow.php │ │ │ │ ├── InboundFlow.php │ │ │ │ ├── InboundFlowActivity.php │ │ │ │ ├── IndustryDataActivity.php │ │ │ │ ├── IndustryDataActivityStatistics.php │ │ │ │ ├── IndustryDataActivityStatus.php │ │ │ │ ├── IndustryDataConnector.php │ │ │ │ ├── IndustryDataRoot.php │ │ │ │ ├── IndustryDataRun.php │ │ │ │ ├── IndustryDataRunActivity.php │ │ │ │ ├── IndustryDataRunEntityCountMetric.php │ │ │ │ ├── IndustryDataRunRoleCountMetric.php │ │ │ │ ├── IndustryDataRunStatistics.php │ │ │ │ ├── IndustryDataRunStatus.php │ │ │ │ ├── OutboundFlowActivity.php │ │ │ │ ├── ReadinessStatus.php │ │ │ │ ├── ReferenceDefinition.php │ │ │ │ ├── ReferenceValue.php │ │ │ │ ├── RoleGroup.php │ │ │ │ ├── RoleReferenceValue.php │ │ │ │ ├── SourceSystemDefinition.php │ │ │ │ ├── UserMatchTargetReferenceValue.php │ │ │ │ ├── UserMatchingSetting.php │ │ │ │ ├── ValidateOperation.php │ │ │ │ ├── YearReferenceValue.php │ │ │ │ └── YearTimePeriodDefinition.php │ │ │ ├── ManagedTenants │ │ │ └── Model │ │ │ │ ├── AddLogRequest.php │ │ │ │ ├── AggregatedPolicyCompliance.php │ │ │ │ ├── AlertData.php │ │ │ │ ├── AlertDataReferenceString.php │ │ │ │ ├── AlertLogContent.php │ │ │ │ ├── AlertRuleDefinitionTemplate.php │ │ │ │ ├── AlertSeverity.php │ │ │ │ ├── AlertStatus.php │ │ │ │ ├── AppPerformance.php │ │ │ │ ├── AuditEvent.php │ │ │ │ ├── CloudPcConnection.php │ │ │ │ ├── CloudPcDevice.php │ │ │ │ ├── CloudPcOverview.php │ │ │ │ ├── ConditionalAccessPolicyCoverage.php │ │ │ │ ├── CredentialUserRegistrationsSummary.php │ │ │ │ ├── DelegatedPrivilegeStatus.php │ │ │ │ ├── DelegatedRoleAssignedUser.php │ │ │ │ ├── DeviceAppPerformance.php │ │ │ │ ├── DeviceCompliancePolicySettingStateSummary.php │ │ │ │ ├── DeviceHealthStatus.php │ │ │ │ ├── Email.php │ │ │ │ ├── GraphAPIErrorDetails.php │ │ │ │ ├── ManagedDeviceCompliance.php │ │ │ │ ├── ManagedDeviceComplianceTrend.php │ │ │ │ ├── ManagedTenant.php │ │ │ │ ├── ManagedTenantAlert.php │ │ │ │ ├── ManagedTenantAlertLog.php │ │ │ │ ├── ManagedTenantAlertRule.php │ │ │ │ ├── ManagedTenantAlertRuleDefinition.php │ │ │ │ ├── ManagedTenantApiNotification.php │ │ │ │ ├── ManagedTenantEmailNotification.php │ │ │ │ ├── ManagedTenantExecutionError.php │ │ │ │ ├── ManagedTenantGenericError.php │ │ │ │ ├── ManagedTenantOperationError.php │ │ │ │ ├── ManagedTenantTicketingEndpoint.php │ │ │ │ ├── ManagementAction.php │ │ │ │ ├── ManagementActionDeploymentStatus.php │ │ │ │ ├── ManagementActionInfo.php │ │ │ │ ├── ManagementActionStatus.php │ │ │ │ ├── ManagementActionTenantDeploymentStatus.php │ │ │ │ ├── ManagementCategory.php │ │ │ │ ├── ManagementIntent.php │ │ │ │ ├── ManagementIntentInfo.php │ │ │ │ ├── ManagementParameterValueType.php │ │ │ │ ├── ManagementProvider.php │ │ │ │ ├── ManagementTemplate.php │ │ │ │ ├── ManagementTemplateCollection.php │ │ │ │ ├── ManagementTemplateCollectionTenantSummary.php │ │ │ │ ├── ManagementTemplateDeploymentStatus.php │ │ │ │ ├── ManagementTemplateDetailedInfo.php │ │ │ │ ├── ManagementTemplateStep.php │ │ │ │ ├── ManagementTemplateStepDeployment.php │ │ │ │ ├── ManagementTemplateStepTenantSummary.php │ │ │ │ ├── ManagementTemplateStepVersion.php │ │ │ │ ├── MyRole.php │ │ │ │ ├── NotificationDestination.php │ │ │ │ ├── NotificationTarget.php │ │ │ │ ├── Phone.php │ │ │ │ ├── RoleAssignment.php │ │ │ │ ├── RoleDefinition.php │ │ │ │ ├── Setting.php │ │ │ │ ├── TemplateAction.php │ │ │ │ ├── TemplateParameter.php │ │ │ │ ├── Tenant.php │ │ │ │ ├── TenantContactInformation.php │ │ │ │ ├── TenantContract.php │ │ │ │ ├── TenantCustomizedInformation.php │ │ │ │ ├── TenantDetailedInformation.php │ │ │ │ ├── TenantGroup.php │ │ │ │ ├── TenantInfo.php │ │ │ │ ├── TenantOnboardingEligibilityReason.php │ │ │ │ ├── TenantOnboardingStatus.php │ │ │ │ ├── TenantStatusInformation.php │ │ │ │ ├── TenantTag.php │ │ │ │ ├── WindowsDeviceMalwareState.php │ │ │ │ ├── WindowsProtectionState.php │ │ │ │ ├── WorkloadAction.php │ │ │ │ ├── WorkloadActionCategory.php │ │ │ │ ├── WorkloadActionDeploymentStatus.php │ │ │ │ ├── WorkloadActionStatus.php │ │ │ │ ├── WorkloadOnboardingStatus.php │ │ │ │ └── WorkloadStatus.php │ │ │ ├── Model │ │ │ ├── AadUserConversationMember.php │ │ │ ├── AadUserConversationMemberResult.php │ │ │ ├── AadUserNotificationRecipient.php │ │ │ ├── AcceptJoinResponse.php │ │ │ ├── AccessAction.php │ │ │ ├── AccessLevel.php │ │ │ ├── AccessPackage.php │ │ │ ├── AccessPackageAnswer.php │ │ │ ├── AccessPackageAnswerChoice.php │ │ │ ├── AccessPackageAnswerString.php │ │ │ ├── AccessPackageAssignment.php │ │ │ ├── AccessPackageAssignmentFilterByCurrentUserOptions.php │ │ │ ├── AccessPackageAssignmentPolicy.php │ │ │ ├── AccessPackageAssignmentRequest.php │ │ │ ├── AccessPackageAssignmentRequestCallbackData.php │ │ │ ├── AccessPackageAssignmentRequestFilterByCurrentUserOptions.php │ │ │ ├── AccessPackageAssignmentRequestRequirements.php │ │ │ ├── AccessPackageAssignmentRequestWorkflowExtension.php │ │ │ ├── AccessPackageAssignmentResourceRole.php │ │ │ ├── AccessPackageAssignmentWorkflowExtension.php │ │ │ ├── AccessPackageCatalog.php │ │ │ ├── AccessPackageCustomExtensionHandlerStatus.php │ │ │ ├── AccessPackageCustomExtensionStage.php │ │ │ ├── AccessPackageFilterByCurrentUserOptions.php │ │ │ ├── AccessPackageLocalizedContent.php │ │ │ ├── AccessPackageLocalizedText.php │ │ │ ├── AccessPackageMultipleChoiceQuestion.php │ │ │ ├── AccessPackageQuestion.php │ │ │ ├── AccessPackageResource.php │ │ │ ├── AccessPackageResourceAttribute.php │ │ │ ├── AccessPackageResourceAttributeDestination.php │ │ │ ├── AccessPackageResourceAttributeQuestion.php │ │ │ ├── AccessPackageResourceAttributeSource.php │ │ │ ├── AccessPackageResourceEnvironment.php │ │ │ ├── AccessPackageResourceRequest.php │ │ │ ├── AccessPackageResourceRole.php │ │ │ ├── AccessPackageResourceRoleScope.php │ │ │ ├── AccessPackageResourceScope.php │ │ │ ├── AccessPackageSubject.php │ │ │ ├── AccessPackageSubjectLifecycle.php │ │ │ ├── AccessPackageTextInputQuestion.php │ │ │ ├── AccessPackageUserDirectoryAttributeStore.php │ │ │ ├── AccessReview.php │ │ │ ├── AccessReviewApplyAction.php │ │ │ ├── AccessReviewDecision.php │ │ │ ├── AccessReviewError.php │ │ │ ├── AccessReviewHistoryDecisionFilter.php │ │ │ ├── AccessReviewHistoryDefinition.php │ │ │ ├── AccessReviewHistoryInstance.php │ │ │ ├── AccessReviewHistoryScheduleSettings.php │ │ │ ├── AccessReviewHistoryStatus.php │ │ │ ├── AccessReviewInactiveUsersQueryScope.php │ │ │ ├── AccessReviewInstance.php │ │ │ ├── AccessReviewInstanceDecisionItem.php │ │ │ ├── AccessReviewInstanceDecisionItemAccessPackageAssignmentPolicyResource.php │ │ │ ├── AccessReviewInstanceDecisionItemAzureRoleResource.php │ │ │ ├── AccessReviewInstanceDecisionItemFilterByCurrentUserOptions.php │ │ │ ├── AccessReviewInstanceDecisionItemResource.php │ │ │ ├── AccessReviewInstanceDecisionItemServicePrincipalResource.php │ │ │ ├── AccessReviewInstanceDecisionItemServicePrincipalTarget.php │ │ │ ├── AccessReviewInstanceDecisionItemTarget.php │ │ │ ├── AccessReviewInstanceDecisionItemUserTarget.php │ │ │ ├── AccessReviewInstanceFilterByCurrentUserOptions.php │ │ │ ├── AccessReviewNotificationRecipientItem.php │ │ │ ├── AccessReviewNotificationRecipientQueryScope.php │ │ │ ├── AccessReviewNotificationRecipientScope.php │ │ │ ├── AccessReviewPolicy.php │ │ │ ├── AccessReviewQueryScope.php │ │ │ ├── AccessReviewRecommendationInsightSetting.php │ │ │ ├── AccessReviewRecurrenceSettings.php │ │ │ ├── AccessReviewReviewer.php │ │ │ ├── AccessReviewReviewerScope.php │ │ │ ├── AccessReviewScheduleDefinition.php │ │ │ ├── AccessReviewScheduleDefinitionFilterByCurrentUserOptions.php │ │ │ ├── AccessReviewScheduleSettings.php │ │ │ ├── AccessReviewScope.php │ │ │ ├── AccessReviewSet.php │ │ │ ├── AccessReviewSettings.php │ │ │ ├── AccessReviewStage.php │ │ │ ├── AccessReviewStageFilterByCurrentUserOptions.php │ │ │ ├── AccessReviewStageSettings.php │ │ │ ├── AccessReviewTimeoutBehavior.php │ │ │ ├── AccessType.php │ │ │ ├── Account.php │ │ │ ├── AccountAlias.php │ │ │ ├── AccountStatus.php │ │ │ ├── AccountTargetContent.php │ │ │ ├── AccountTargetContentType.php │ │ │ ├── Acl.php │ │ │ ├── AclType.php │ │ │ ├── ActionCapability.php │ │ │ ├── ActionResultPart.php │ │ │ ├── ActionSource.php │ │ │ ├── ActionState.php │ │ │ ├── ActionStep.php │ │ │ ├── ActionUrl.php │ │ │ ├── ActivateDeviceEsimActionResult.php │ │ │ ├── ActiveDirectoryWindowsAutopilotDeploymentProfile.php │ │ │ ├── ActivityBasedTimeoutPolicy.php │ │ │ ├── ActivityDomain.php │ │ │ ├── ActivityHistoryItem.php │ │ │ ├── ActivityStatistics.php │ │ │ ├── ActivityType.php │ │ │ ├── AddContentFooterAction.php │ │ │ ├── AddContentHeaderAction.php │ │ │ ├── AddFooter.php │ │ │ ├── AddHeader.php │ │ │ ├── AddIn.php │ │ │ ├── AddLargeGalleryViewOperation.php │ │ │ ├── AddWatermark.php │ │ │ ├── AddWatermarkAction.php │ │ │ ├── AddressBookAccountTargetContent.php │ │ │ ├── Admin.php │ │ │ ├── AdminConsent.php │ │ │ ├── AdminConsentRequestPolicy.php │ │ │ ├── AdminConsentState.php │ │ │ ├── AdminReportSettings.php │ │ │ ├── AdminWindows.php │ │ │ ├── AdminWindowsUpdates.php │ │ │ ├── AdministrativeUnit.php │ │ │ ├── AdministratorConfiguredDeviceComplianceState.php │ │ │ ├── AdvancedBitLockerState.php │ │ │ ├── AdvancedConfigState.php │ │ │ ├── AdvancedThreatProtectionOnboardingDeviceSettingState.php │ │ │ ├── AdvancedThreatProtectionOnboardingStateSummary.php │ │ │ ├── AgedAccountsPayable.php │ │ │ ├── AgedAccountsReceivable.php │ │ │ ├── AgentStatus.php │ │ │ ├── AggregationOption.php │ │ │ ├── Agreement.php │ │ │ ├── AgreementAcceptance.php │ │ │ ├── AgreementAcceptanceState.php │ │ │ ├── AgreementFile.php │ │ │ ├── AgreementFileData.php │ │ │ ├── AgreementFileLocalization.php │ │ │ ├── AgreementFileProperties.php │ │ │ ├── AgreementFileVersion.php │ │ │ ├── AirPrintDestination.php │ │ │ ├── Album.php │ │ │ ├── Alert.php │ │ │ ├── AlertDetection.php │ │ │ ├── AlertFeedback.php │ │ │ ├── AlertHistoryState.php │ │ │ ├── AlertSeverity.php │ │ │ ├── AlertStatus.php │ │ │ ├── AlertTrigger.php │ │ │ ├── Alignment.php │ │ │ ├── AllDevicesAssignmentTarget.php │ │ │ ├── AllLicensedUsersAssignmentTarget.php │ │ │ ├── AllowInvitesFrom.php │ │ │ ├── AllowedAudiences.php │ │ │ ├── AllowedDataLocation.php │ │ │ ├── AllowedRolePrincipalTypes.php │ │ │ ├── AllowedValue.php │ │ │ ├── AlterationResponse.php │ │ │ ├── AlteredQueryToken.php │ │ │ ├── AlternativeSecurityId.php │ │ │ ├── AnalyticsActivityType.php │ │ │ ├── AndroidCertificateProfileBase.php │ │ │ ├── AndroidCompliancePolicy.php │ │ │ ├── AndroidCustomConfiguration.php │ │ │ ├── AndroidDeviceComplianceLocalActionBase.php │ │ │ ├── AndroidDeviceComplianceLocalActionLockDevice.php │ │ │ ├── AndroidDeviceComplianceLocalActionLockDeviceWithPasscode.php │ │ │ ├── AndroidDeviceOwnerAppAutoUpdatePolicyType.php │ │ │ ├── AndroidDeviceOwnerBatteryPluggedMode.php │ │ │ ├── AndroidDeviceOwnerCertificateAccessType.php │ │ │ ├── AndroidDeviceOwnerCertificateProfileBase.php │ │ │ ├── AndroidDeviceOwnerCompliancePolicy.php │ │ │ ├── AndroidDeviceOwnerCrossProfileDataSharing.php │ │ │ ├── AndroidDeviceOwnerDefaultAppPermissionPolicyType.php │ │ │ ├── AndroidDeviceOwnerDerivedCredentialAuthenticationConfiguration.php │ │ │ ├── AndroidDeviceOwnerEnrollmentMode.php │ │ │ ├── AndroidDeviceOwnerEnrollmentProfile.php │ │ │ ├── AndroidDeviceOwnerEnrollmentProfileType.php │ │ │ ├── AndroidDeviceOwnerEnrollmentTokenType.php │ │ │ ├── AndroidDeviceOwnerEnterpriseWiFiConfiguration.php │ │ │ ├── AndroidDeviceOwnerGeneralDeviceConfiguration.php │ │ │ ├── AndroidDeviceOwnerGlobalProxy.php │ │ │ ├── AndroidDeviceOwnerGlobalProxyAutoConfig.php │ │ │ ├── AndroidDeviceOwnerGlobalProxyDirect.php │ │ │ ├── AndroidDeviceOwnerImportedPFXCertificateProfile.php │ │ │ ├── AndroidDeviceOwnerKioskCustomizationStatusBar.php │ │ │ ├── AndroidDeviceOwnerKioskCustomizationSystemNavigation.php │ │ │ ├── AndroidDeviceOwnerKioskModeApp.php │ │ │ ├── AndroidDeviceOwnerKioskModeAppPositionItem.php │ │ │ ├── AndroidDeviceOwnerKioskModeFolderIcon.php │ │ │ ├── AndroidDeviceOwnerKioskModeFolderItem.php │ │ │ ├── AndroidDeviceOwnerKioskModeHomeScreenItem.php │ │ │ ├── AndroidDeviceOwnerKioskModeIconSize.php │ │ │ ├── AndroidDeviceOwnerKioskModeManagedFolder.php │ │ │ ├── AndroidDeviceOwnerKioskModeManagedFolderReference.php │ │ │ ├── AndroidDeviceOwnerKioskModeScreenOrientation.php │ │ │ ├── AndroidDeviceOwnerKioskModeWeblink.php │ │ │ ├── AndroidDeviceOwnerPkcsCertificateProfile.php │ │ │ ├── AndroidDeviceOwnerPlayStoreMode.php │ │ │ ├── AndroidDeviceOwnerRequiredPasswordType.php │ │ │ ├── AndroidDeviceOwnerRequiredPasswordUnlock.php │ │ │ ├── AndroidDeviceOwnerScepCertificateProfile.php │ │ │ ├── AndroidDeviceOwnerSilentCertificateAccess.php │ │ │ ├── AndroidDeviceOwnerSystemUpdateFreezePeriod.php │ │ │ ├── AndroidDeviceOwnerSystemUpdateInstallType.php │ │ │ ├── AndroidDeviceOwnerTrustedRootCertificate.php │ │ │ ├── AndroidDeviceOwnerUserFacingMessage.php │ │ │ ├── AndroidDeviceOwnerVirtualHomeButtonType.php │ │ │ ├── AndroidDeviceOwnerVpnConfiguration.php │ │ │ ├── AndroidDeviceOwnerWiFiConfiguration.php │ │ │ ├── AndroidDeviceOwnerWiFiSecurityType.php │ │ │ ├── AndroidEapType.php │ │ │ ├── AndroidEasEmailProfileConfiguration.php │ │ │ ├── AndroidEnrollmentCompanyCode.php │ │ │ ├── AndroidEnterpriseWiFiConfiguration.php │ │ │ ├── AndroidForWorkApp.php │ │ │ ├── AndroidForWorkAppConfigurationSchema.php │ │ │ ├── AndroidForWorkAppConfigurationSchemaItem.php │ │ │ ├── AndroidForWorkAppConfigurationSchemaItemDataType.php │ │ │ ├── AndroidForWorkBindStatus.php │ │ │ ├── AndroidForWorkCertificateProfileBase.php │ │ │ ├── AndroidForWorkCompliancePolicy.php │ │ │ ├── AndroidForWorkCrossProfileDataSharingType.php │ │ │ ├── AndroidForWorkCustomConfiguration.php │ │ │ ├── AndroidForWorkDefaultAppPermissionPolicyType.php │ │ │ ├── AndroidForWorkEasEmailProfileBase.php │ │ │ ├── AndroidForWorkEnrollmentProfile.php │ │ │ ├── AndroidForWorkEnrollmentTarget.php │ │ │ ├── AndroidForWorkEnterpriseWiFiConfiguration.php │ │ │ ├── AndroidForWorkGeneralDeviceConfiguration.php │ │ │ ├── AndroidForWorkGmailEasConfiguration.php │ │ │ ├── AndroidForWorkImportedPFXCertificateProfile.php │ │ │ ├── AndroidForWorkMobileAppConfiguration.php │ │ │ ├── AndroidForWorkNineWorkEasConfiguration.php │ │ │ ├── AndroidForWorkPkcsCertificateProfile.php │ │ │ ├── AndroidForWorkRequiredPasswordType.php │ │ │ ├── AndroidForWorkScepCertificateProfile.php │ │ │ ├── AndroidForWorkSettings.php │ │ │ ├── AndroidForWorkSyncStatus.php │ │ │ ├── AndroidForWorkTrustedRootCertificate.php │ │ │ ├── AndroidForWorkVpnConfiguration.php │ │ │ ├── AndroidForWorkVpnConnectionType.php │ │ │ ├── AndroidForWorkWiFiConfiguration.php │ │ │ ├── AndroidFotaDeploymentAssignment.php │ │ │ ├── AndroidFotaDeploymentAssignmentTarget.php │ │ │ ├── AndroidGeneralDeviceConfiguration.php │ │ │ ├── AndroidImportedPFXCertificateProfile.php │ │ │ ├── AndroidKeyguardFeature.php │ │ │ ├── AndroidLobApp.php │ │ │ ├── AndroidManagedAppProtection.php │ │ │ ├── AndroidManagedAppRegistration.php │ │ │ ├── AndroidManagedAppSafetyNetAppsVerificationType.php │ │ │ ├── AndroidManagedAppSafetyNetDeviceAttestationType.php │ │ │ ├── AndroidManagedAppSafetyNetEvaluationType.php │ │ │ ├── AndroidManagedStoreAccountAppSyncStatus.php │ │ │ ├── AndroidManagedStoreAccountBindStatus.php │ │ │ ├── AndroidManagedStoreAccountEnrollmentTarget.php │ │ │ ├── AndroidManagedStoreAccountEnterpriseSettings.php │ │ │ ├── AndroidManagedStoreApp.php │ │ │ ├── AndroidManagedStoreAppAssignmentSettings.php │ │ │ ├── AndroidManagedStoreAppConfiguration.php │ │ │ ├── AndroidManagedStoreAppConfigurationSchema.php │ │ │ ├── AndroidManagedStoreAppConfigurationSchemaItem.php │ │ │ ├── AndroidManagedStoreAppConfigurationSchemaItemDataType.php │ │ │ ├── AndroidManagedStoreAppTrack.php │ │ │ ├── AndroidManagedStoreAutoUpdateMode.php │ │ │ ├── AndroidManagedStoreWebApp.php │ │ │ ├── AndroidMinimumOperatingSystem.php │ │ │ ├── AndroidMobileAppIdentifier.php │ │ │ ├── AndroidOmaCpConfiguration.php │ │ │ ├── AndroidPermissionAction.php │ │ │ ├── AndroidPermissionActionType.php │ │ │ ├── AndroidPkcsCertificateProfile.php │ │ │ ├── AndroidProfileApplicability.php │ │ │ ├── AndroidRequiredPasswordComplexity.php │ │ │ ├── AndroidRequiredPasswordType.php │ │ │ ├── AndroidSafetyNetEvaluationType.php │ │ │ ├── AndroidScepCertificateProfile.php │ │ │ ├── AndroidStoreApp.php │ │ │ ├── AndroidTrustedRootCertificate.php │ │ │ ├── AndroidUsernameSource.php │ │ │ ├── AndroidVpnConfiguration.php │ │ │ ├── AndroidVpnConnectionType.php │ │ │ ├── AndroidWiFiConfiguration.php │ │ │ ├── AndroidWiFiSecurityType.php │ │ │ ├── AndroidWorkProfileAccountUse.php │ │ │ ├── AndroidWorkProfileCertificateProfileBase.php │ │ │ ├── AndroidWorkProfileCompliancePolicy.php │ │ │ ├── AndroidWorkProfileCrossProfileDataSharingType.php │ │ │ ├── AndroidWorkProfileCustomConfiguration.php │ │ │ ├── AndroidWorkProfileDefaultAppPermissionPolicyType.php │ │ │ ├── AndroidWorkProfileEasEmailProfileBase.php │ │ │ ├── AndroidWorkProfileEnterpriseWiFiConfiguration.php │ │ │ ├── AndroidWorkProfileGeneralDeviceConfiguration.php │ │ │ ├── AndroidWorkProfileGmailEasConfiguration.php │ │ │ ├── AndroidWorkProfileNineWorkEasConfiguration.php │ │ │ ├── AndroidWorkProfilePkcsCertificateProfile.php │ │ │ ├── AndroidWorkProfileRequiredPasswordType.php │ │ │ ├── AndroidWorkProfileScepCertificateProfile.php │ │ │ ├── AndroidWorkProfileTrustedRootCertificate.php │ │ │ ├── AndroidWorkProfileVpnConfiguration.php │ │ │ ├── AndroidWorkProfileVpnConnectionType.php │ │ │ ├── AndroidWorkProfileWiFiConfiguration.php │ │ │ ├── AnonymousGuestConversationMember.php │ │ │ ├── AnswerInputType.php │ │ │ ├── AospDeviceOwnerCertificateProfileBase.php │ │ │ ├── AospDeviceOwnerCompliancePolicy.php │ │ │ ├── AospDeviceOwnerDeviceConfiguration.php │ │ │ ├── AospDeviceOwnerEnterpriseWiFiConfiguration.php │ │ │ ├── AospDeviceOwnerPkcsCertificateProfile.php │ │ │ ├── AospDeviceOwnerScepCertificateProfile.php │ │ │ ├── AospDeviceOwnerTrustedRootCertificate.php │ │ │ ├── AospDeviceOwnerWiFiConfiguration.php │ │ │ ├── AospDeviceOwnerWiFiSecurityType.php │ │ │ ├── AospWifiSecurityType.php │ │ │ ├── ApiApplication.php │ │ │ ├── ApiAuthenticationConfigurationBase.php │ │ │ ├── ApiServicePrincipal.php │ │ │ ├── AppCatalogs.php │ │ │ ├── AppConfigurationSettingItem.php │ │ │ ├── AppConsentApprovalRoute.php │ │ │ ├── AppConsentRequest.php │ │ │ ├── AppConsentRequestScope.php │ │ │ ├── AppCredentialRestrictionType.php │ │ │ ├── AppHostedMediaConfig.php │ │ │ ├── AppIdentity.php │ │ │ ├── AppInstallControlType.php │ │ │ ├── AppKeyCredentialRestrictionType.php │ │ │ ├── AppListItem.php │ │ │ ├── AppListType.php │ │ │ ├── AppLockerApplicationControlType.php │ │ │ ├── AppLogCollectionDownloadDetails.php │ │ │ ├── AppLogCollectionRequest.php │ │ │ ├── AppLogDecryptionAlgorithm.php │ │ │ ├── AppLogUploadState.php │ │ │ ├── AppManagementConfiguration.php │ │ │ ├── AppManagementLevel.php │ │ │ ├── AppManagementPolicy.php │ │ │ ├── AppMetadata.php │ │ │ ├── AppMetadataEntry.php │ │ │ ├── AppRole.php │ │ │ ├── AppRoleAssignment.php │ │ │ ├── AppScope.php │ │ │ ├── AppVulnerabilityManagedDevice.php │ │ │ ├── AppVulnerabilityMobileApp.php │ │ │ ├── AppVulnerabilityTask.php │ │ │ ├── AppVulnerabilityTaskMitigationType.php │ │ │ ├── AppleAppListItem.php │ │ │ ├── AppleDeploymentChannel.php │ │ │ ├── AppleDeviceFeaturesConfigurationBase.php │ │ │ ├── AppleEnrollmentProfileAssignment.php │ │ │ ├── AppleExpeditedCheckinConfigurationBase.php │ │ │ ├── AppleManagedIdentityProvider.php │ │ │ ├── AppleOwnerTypeEnrollmentType.php │ │ │ ├── ApplePushNotificationCertificate.php │ │ │ ├── AppleSubjectNameFormat.php │ │ │ ├── AppleUserInitiatedEnrollmentProfile.php │ │ │ ├── AppleUserInitiatedEnrollmentType.php │ │ │ ├── AppleVpnAlwaysOnConfiguration.php │ │ │ ├── AppleVpnConfiguration.php │ │ │ ├── AppleVpnConnectionType.php │ │ │ ├── AppleVppTokenTroubleshootingEvent.php │ │ │ ├── Application.php │ │ │ ├── ApplicationEnforcedRestrictionsSessionControl.php │ │ │ ├── ApplicationGuardBlockClipboardSharingType.php │ │ │ ├── ApplicationGuardBlockFileTransferType.php │ │ │ ├── ApplicationGuardEnabledOptions.php │ │ │ ├── ApplicationMode.php │ │ │ ├── ApplicationPermissionsRequired.php │ │ │ ├── ApplicationSegment.php │ │ │ ├── ApplicationServicePrincipal.php │ │ │ ├── ApplicationSignInDetailedSummary.php │ │ │ ├── ApplicationSignInSummary.php │ │ │ ├── ApplicationTemplate.php │ │ │ ├── ApplicationType.php │ │ │ ├── AppliedAuthenticationEventListener.php │ │ │ ├── AppliedConditionalAccessPolicy.php │ │ │ ├── AppliedConditionalAccessPolicyResult.php │ │ │ ├── ApplyLabelAction.php │ │ │ ├── Approval.php │ │ │ ├── ApprovalFilterByCurrentUserOptions.php │ │ │ ├── ApprovalSettings.php │ │ │ ├── ApprovalStage.php │ │ │ ├── ApprovalState.php │ │ │ ├── ApprovalStep.php │ │ │ ├── ApprovalWorkflowProvider.php │ │ │ ├── ArchivedPrintJob.php │ │ │ ├── AssignedLabel.php │ │ │ ├── AssignedLicense.php │ │ │ ├── AssignedPlan.php │ │ │ ├── AssignedTrainingInfo.php │ │ │ ├── AssignmentFilterEvaluateRequest.php │ │ │ ├── AssignmentFilterEvaluationResult.php │ │ │ ├── AssignmentFilterEvaluationStatusDetails.php │ │ │ ├── AssignmentFilterEvaluationSummary.php │ │ │ ├── AssignmentFilterManagementType.php │ │ │ ├── AssignmentFilterOperator.php │ │ │ ├── AssignmentFilterPayloadType.php │ │ │ ├── AssignmentFilterState.php │ │ │ ├── AssignmentFilterStatusDetails.php │ │ │ ├── AssignmentFilterSupportedProperty.php │ │ │ ├── AssignmentFilterTypeAndEvaluationResult.php │ │ │ ├── AssignmentFilterValidationResult.php │ │ │ ├── AssignmentMethod.php │ │ │ ├── AssignmentOrder.php │ │ │ ├── AssignmentReviewSettings.php │ │ │ ├── AssignmentScheduleFilterByCurrentUserOptions.php │ │ │ ├── AssignmentScheduleInstanceFilterByCurrentUserOptions.php │ │ │ ├── AssignmentScheduleRequestFilterByCurrentUserOptions.php │ │ │ ├── AssignmentType.php │ │ │ ├── AssociatedAssignmentPayloadType.php │ │ │ ├── AssociatedTeamInfo.php │ │ │ ├── Attachment.php │ │ │ ├── AttachmentBase.php │ │ │ ├── AttachmentContentProperties.php │ │ │ ├── AttachmentInfo.php │ │ │ ├── AttachmentItem.php │ │ │ ├── AttachmentSession.php │ │ │ ├── AttachmentType.php │ │ │ ├── AttackSimulationOperation.php │ │ │ ├── AttackSimulationOperationType.php │ │ │ ├── AttackSimulationRepeatOffender.php │ │ │ ├── AttackSimulationRoot.php │ │ │ ├── AttackSimulationSimulationUserCoverage.php │ │ │ ├── AttackSimulationTrainingUserCoverage.php │ │ │ ├── AttackSimulationUser.php │ │ │ ├── AttendanceInterval.php │ │ │ ├── AttendanceRecord.php │ │ │ ├── Attendee.php │ │ │ ├── AttendeeAvailability.php │ │ │ ├── AttendeeBase.php │ │ │ ├── AttendeeType.php │ │ │ ├── AttestationLevel.php │ │ │ ├── AttributeDefinition.php │ │ │ ├── AttributeFlowBehavior.php │ │ │ ├── AttributeFlowType.php │ │ │ ├── AttributeMapping.php │ │ │ ├── AttributeMappingFunctionSchema.php │ │ │ ├── AttributeMappingParameterSchema.php │ │ │ ├── AttributeMappingSource.php │ │ │ ├── AttributeMappingSourceType.php │ │ │ ├── AttributeSet.php │ │ │ ├── AttributeType.php │ │ │ ├── Audio.php │ │ │ ├── AudioConferencing.php │ │ │ ├── AudioRoutingGroup.php │ │ │ ├── AuditActivityInitiator.php │ │ │ ├── AuditActor.php │ │ │ ├── AuditEvent.php │ │ │ ├── AuditLogRoot.php │ │ │ ├── AuditProperty.php │ │ │ ├── AuditResource.php │ │ │ ├── AuditUserIdentity.php │ │ │ ├── AuthMethodsType.php │ │ │ ├── Authentication.php │ │ │ ├── AuthenticationAppAdminConfiguration.php │ │ │ ├── AuthenticationAppDeviceDetails.php │ │ │ ├── AuthenticationAppEvaluation.php │ │ │ ├── AuthenticationAppPolicyDetails.php │ │ │ ├── AuthenticationAppPolicyStatus.php │ │ │ ├── AuthenticationCombinationConfiguration.php │ │ │ ├── AuthenticationConditionApplication.php │ │ │ ├── AuthenticationConditions.php │ │ │ ├── AuthenticationConditionsApplications.php │ │ │ ├── AuthenticationConfigurationValidation.php │ │ │ ├── AuthenticationContext.php │ │ │ ├── AuthenticationContextClassReference.php │ │ │ ├── AuthenticationContextDetail.php │ │ │ ├── AuthenticationDetail.php │ │ │ ├── AuthenticationEventHandlerResult.php │ │ │ ├── AuthenticationEventListener.php │ │ │ ├── AuthenticationEventType.php │ │ │ ├── AuthenticationEventsPolicy.php │ │ │ ├── AuthenticationFlowsPolicy.php │ │ │ ├── AuthenticationListener.php │ │ │ ├── AuthenticationMethod.php │ │ │ ├── AuthenticationMethodConfiguration.php │ │ │ ├── AuthenticationMethodFeature.php │ │ │ ├── AuthenticationMethodFeatureConfiguration.php │ │ │ ├── AuthenticationMethodKeyStrength.php │ │ │ ├── AuthenticationMethodModeDetail.php │ │ │ ├── AuthenticationMethodModes.php │ │ │ ├── AuthenticationMethodSignInState.php │ │ │ ├── AuthenticationMethodState.php │ │ │ ├── AuthenticationMethodTarget.php │ │ │ ├── AuthenticationMethodTargetType.php │ │ │ ├── AuthenticationMethodsPolicy.php │ │ │ ├── AuthenticationMethodsPolicyMigrationState.php │ │ │ ├── AuthenticationMethodsRegistrationCampaign.php │ │ │ ├── AuthenticationMethodsRegistrationCampaignIncludeTarget.php │ │ │ ├── AuthenticationMethodsRoot.php │ │ │ ├── AuthenticationPhoneType.php │ │ │ ├── AuthenticationProtocol.php │ │ │ ├── AuthenticationRequirementPolicy.php │ │ │ ├── AuthenticationSourceFilter.php │ │ │ ├── AuthenticationStrength.php │ │ │ ├── AuthenticationStrengthPolicy.php │ │ │ ├── AuthenticationStrengthPolicyType.php │ │ │ ├── AuthenticationStrengthRequirements.php │ │ │ ├── AuthenticationStrengthResult.php │ │ │ ├── AuthenticationStrengthRoot.php │ │ │ ├── AuthenticationStrengthUsage.php │ │ │ ├── AuthenticationTransformConstant.php │ │ │ ├── AuthoredNote.php │ │ │ ├── AuthorizationInfo.php │ │ │ ├── AuthorizationPolicy.php │ │ │ ├── AutoAdmittedUsersType.php │ │ │ ├── AutoLabeling.php │ │ │ ├── AutoRestartNotificationDismissalMethod.php │ │ │ ├── AutoReviewSettings.php │ │ │ ├── AutomaticRepliesMailTips.php │ │ │ ├── AutomaticRepliesSetting.php │ │ │ ├── AutomaticRepliesStatus.php │ │ │ ├── AutomaticUpdateMode.php │ │ │ ├── AvailabilityItem.php │ │ │ ├── AverageComparativeScore.php │ │ │ ├── AzureADRegistrationPolicy.php │ │ │ ├── AzureADWindowsAutopilotDeploymentProfile.php │ │ │ ├── AzureActiveDirectoryTenant.php │ │ │ ├── AzureAdJoinPolicy.php │ │ │ ├── AzureAdPopTokenAuthentication.php │ │ │ ├── AzureAdTokenAuthentication.php │ │ │ ├── AzureCommunicationServicesUserConversationMember.php │ │ │ ├── AzureCommunicationServicesUserIdentity.php │ │ │ ├── B2cAuthenticationMethodsPolicy.php │ │ │ ├── B2cIdentityUserFlow.php │ │ │ ├── B2xIdentityUserFlow.php │ │ │ ├── BaseAuthenticationMethod.php │ │ │ ├── BaseItem.php │ │ │ ├── BaseItemVersion.php │ │ │ ├── BasicAuthentication.php │ │ │ ├── BinaryOperator.php │ │ │ ├── BitLockerEncryptionMethod.php │ │ │ ├── BitLockerFixedDrivePolicy.php │ │ │ ├── BitLockerRecoveryInformationType.php │ │ │ ├── BitLockerRecoveryOptions.php │ │ │ ├── BitLockerRecoveryPasswordRotationType.php │ │ │ ├── BitLockerRemovableDrivePolicy.php │ │ │ ├── BitLockerSystemDrivePolicy.php │ │ │ ├── Bitlocker.php │ │ │ ├── BitlockerRecoveryKey.php │ │ │ ├── BlockAccessAction.php │ │ │ ├── BodyType.php │ │ │ ├── BookingAppointment.php │ │ │ ├── BookingBusiness.php │ │ │ ├── BookingCurrency.php │ │ │ ├── BookingCustomQuestion.php │ │ │ ├── BookingCustomer.php │ │ │ ├── BookingCustomerInformation.php │ │ │ ├── BookingCustomerInformationBase.php │ │ │ ├── BookingInvoiceStatus.php │ │ │ ├── BookingNamedEntity.php │ │ │ ├── BookingPerson.php │ │ │ ├── BookingPriceType.php │ │ │ ├── BookingQuestionAnswer.php │ │ │ ├── BookingQuestionAssignment.php │ │ │ ├── BookingReminder.php │ │ │ ├── BookingReminderRecipients.php │ │ │ ├── BookingSchedulingPolicy.php │ │ │ ├── BookingService.php │ │ │ ├── BookingStaffMember.php │ │ │ ├── BookingStaffMembershipStatus.php │ │ │ ├── BookingStaffRole.php │ │ │ ├── BookingType.php │ │ │ ├── BookingWorkHours.php │ │ │ ├── BookingWorkTimeSlot.php │ │ │ ├── BookingsAvailabilityStatus.php │ │ │ ├── BooleanColumn.php │ │ │ ├── BroadcastMeetingAudience.php │ │ │ ├── BroadcastMeetingCaptionSettings.php │ │ │ ├── BroadcastMeetingSettings.php │ │ │ ├── BrowserSharedCookie.php │ │ │ ├── BrowserSharedCookieHistory.php │ │ │ ├── BrowserSharedCookieSourceEnvironment.php │ │ │ ├── BrowserSharedCookieStatus.php │ │ │ ├── BrowserSite.php │ │ │ ├── BrowserSiteCompatibilityMode.php │ │ │ ├── BrowserSiteHistory.php │ │ │ ├── BrowserSiteList.php │ │ │ ├── BrowserSiteListStatus.php │ │ │ ├── BrowserSiteMergeType.php │ │ │ ├── BrowserSiteStatus.php │ │ │ ├── BrowserSiteTargetEnvironment.php │ │ │ ├── BrowserSyncSetting.php │ │ │ ├── BucketAggregationDefinition.php │ │ │ ├── BucketAggregationRange.php │ │ │ ├── BucketAggregationSortProperty.php │ │ │ ├── BufferDecryptionResult.php │ │ │ ├── BufferEncryptionResult.php │ │ │ ├── BuiltInIdentityProvider.php │ │ │ ├── BulkDriverActionResult.php │ │ │ ├── BulkManagedDeviceActionResult.php │ │ │ ├── Bundle.php │ │ │ ├── BusinessFlow.php │ │ │ ├── BusinessFlowSettings.php │ │ │ ├── BusinessFlowTemplate.php │ │ │ ├── BusinessScenario.php │ │ │ ├── BusinessScenarioGroupTarget.php │ │ │ ├── BusinessScenarioPlanReference.php │ │ │ ├── BusinessScenarioPlanner.php │ │ │ ├── BusinessScenarioProperties.php │ │ │ ├── BusinessScenarioTask.php │ │ │ ├── BusinessScenarioTaskTargetBase.php │ │ │ ├── CalculatedColumn.php │ │ │ ├── Calendar.php │ │ │ ├── CalendarColor.php │ │ │ ├── CalendarGroup.php │ │ │ ├── CalendarPermission.php │ │ │ ├── CalendarRoleType.php │ │ │ ├── CalendarSharingAction.php │ │ │ ├── CalendarSharingActionImportance.php │ │ │ ├── CalendarSharingActionType.php │ │ │ ├── CalendarSharingMessage.php │ │ │ ├── CalendarSharingMessageAction.php │ │ │ ├── Call.php │ │ │ ├── CallActivityStatistics.php │ │ │ ├── CallDirection.php │ │ │ ├── CallDisposition.php │ │ │ ├── CallEndedEventMessageDetail.php │ │ │ ├── CallMediaState.php │ │ │ ├── CallOptions.php │ │ │ ├── CallParticipantInfo.php │ │ │ ├── CallRecordingEventMessageDetail.php │ │ │ ├── CallRecordingStatus.php │ │ │ ├── CallRoute.php │ │ │ ├── CallStartedEventMessageDetail.php │ │ │ ├── CallState.php │ │ │ ├── CallTranscript.php │ │ │ ├── CallTranscriptEventMessageDetail.php │ │ │ ├── CallTranscriptionInfo.php │ │ │ ├── CallTranscriptionState.php │ │ │ ├── CancelMediaProcessingOperation.php │ │ │ ├── CanvasLayout.php │ │ │ ├── CartToClassAssociation.php │ │ │ ├── CategoryColor.php │ │ │ ├── CertificateAuthority.php │ │ │ ├── CertificateBasedAuthConfiguration.php │ │ │ ├── CertificateConnectorDetails.php │ │ │ ├── CertificateConnectorHealthMetricValue.php │ │ │ ├── CertificateConnectorSetting.php │ │ │ ├── CertificateDestinationStore.php │ │ │ ├── CertificateIssuanceStates.php │ │ │ ├── CertificateRevocationStatus.php │ │ │ ├── CertificateStatus.php │ │ │ ├── CertificateStore.php │ │ │ ├── CertificateValidityPeriodScale.php │ │ │ ├── Certification.php │ │ │ ├── CertificationControl.php │ │ │ ├── ChangeNotification.php │ │ │ ├── ChangeNotificationCollection.php │ │ │ ├── ChangeNotificationEncryptedContent.php │ │ │ ├── ChangeTrackedEntity.php │ │ │ ├── ChangeType.php │ │ │ ├── ChangeUefiSettingsPermission.php │ │ │ ├── Channel.php │ │ │ ├── ChannelAddedEventMessageDetail.php │ │ │ ├── ChannelDeletedEventMessageDetail.php │ │ │ ├── ChannelDescriptionUpdatedEventMessageDetail.php │ │ │ ├── ChannelIdentity.php │ │ │ ├── ChannelMembersNotificationRecipient.php │ │ │ ├── ChannelMembershipType.php │ │ │ ├── ChannelModerationSettings.php │ │ │ ├── ChannelRenamedEventMessageDetail.php │ │ │ ├── ChannelSetAsFavoriteByDefaultEventMessageDetail.php │ │ │ ├── ChannelSummary.php │ │ │ ├── ChannelUnsetAsFavoriteByDefaultEventMessageDetail.php │ │ │ ├── ChassisType.php │ │ │ ├── Chat.php │ │ │ ├── ChatActivityStatistics.php │ │ │ ├── ChatInfo.php │ │ │ ├── ChatMembersNotificationRecipient.php │ │ │ ├── ChatMessage.php │ │ │ ├── ChatMessageActions.php │ │ │ ├── ChatMessageAttachment.php │ │ │ ├── ChatMessageFromIdentitySet.php │ │ │ ├── ChatMessageHistoryItem.php │ │ │ ├── ChatMessageHostedContent.php │ │ │ ├── ChatMessageImportance.php │ │ │ ├── ChatMessageInfo.php │ │ │ ├── ChatMessageMention.php │ │ │ ├── ChatMessageMentionedIdentitySet.php │ │ │ ├── ChatMessagePolicyViolation.php │ │ │ ├── ChatMessagePolicyViolationDlpActionTypes.php │ │ │ ├── ChatMessagePolicyViolationPolicyTip.php │ │ │ ├── ChatMessagePolicyViolationUserActionTypes.php │ │ │ ├── ChatMessagePolicyViolationVerdictDetailsTypes.php │ │ │ ├── ChatMessageReaction.php │ │ │ ├── ChatMessageReactionIdentitySet.php │ │ │ ├── ChatMessageType.php │ │ │ ├── ChatRenamedEventMessageDetail.php │ │ │ ├── ChatType.php │ │ │ ├── ChatViewpoint.php │ │ │ ├── ChecklistItem.php │ │ │ ├── ChoiceColumn.php │ │ │ ├── ChromeOSDeviceProperty.php │ │ │ ├── ChromeOSOnboardingSettings.php │ │ │ ├── ChromeOSOnboardingStatus.php │ │ │ ├── ClaimsMapping.php │ │ │ ├── ClaimsMappingPolicy.php │ │ │ ├── ClassifcationErrorBase.php │ │ │ ├── ClassificationAttribute.php │ │ │ ├── ClassificationError.php │ │ │ ├── ClassificationInnerError.php │ │ │ ├── ClassificationJobResponse.php │ │ │ ├── ClassificationMethod.php │ │ │ ├── ClassificationRequestContentMetaData.php │ │ │ ├── ClassificationResult.php │ │ │ ├── ClientCertificateAuthentication.php │ │ │ ├── ClientCredentialType.php │ │ │ ├── ClonableTeamParts.php │ │ │ ├── CloudAppSecurityProfile.php │ │ │ ├── CloudAppSecuritySessionControl.php │ │ │ ├── CloudAppSecuritySessionControlType.php │ │ │ ├── CloudAppSecurityState.php │ │ │ ├── CloudCommunications.php │ │ │ ├── CloudPC.php │ │ │ ├── CloudPCConnectivityIssue.php │ │ │ ├── CloudPcAuditActivityOperationType.php │ │ │ ├── CloudPcAuditActivityResult.php │ │ │ ├── CloudPcAuditActor.php │ │ │ ├── CloudPcAuditActorType.php │ │ │ ├── CloudPcAuditCategory.php │ │ │ ├── CloudPcAuditEvent.php │ │ │ ├── CloudPcAuditProperty.php │ │ │ ├── CloudPcAuditResource.php │ │ │ ├── CloudPcBulkRemoteActionResult.php │ │ │ ├── CloudPcConnectivityEvent.php │ │ │ ├── CloudPcConnectivityEventResult.php │ │ │ ├── CloudPcConnectivityEventType.php │ │ │ ├── CloudPcConnectivityResult.php │ │ │ ├── CloudPcConnectivityStatus.php │ │ │ ├── CloudPcCrossCloudGovernmentOrganizationMapping.php │ │ │ ├── CloudPcDeviceImage.php │ │ │ ├── CloudPcDeviceImageOsStatus.php │ │ │ ├── CloudPcDeviceImageStatus.php │ │ │ ├── CloudPcDeviceImageStatusDetails.php │ │ │ ├── CloudPcDiskEncryptionState.php │ │ │ ├── CloudPcDomainJoinConfiguration.php │ │ │ ├── CloudPcDomainJoinType.php │ │ │ ├── CloudPcExportJob.php │ │ │ ├── CloudPcExportJobStatus.php │ │ │ ├── CloudPcExternalPartnerSetting.php │ │ │ ├── CloudPcExternalPartnerStatus.php │ │ │ ├── CloudPcForensicStorageAccount.php │ │ │ ├── CloudPcGalleryImage.php │ │ │ ├── CloudPcGalleryImageStatus.php │ │ │ ├── CloudPcHealthCheckItem.php │ │ │ ├── CloudPcLaunchInfo.php │ │ │ ├── CloudPcLoginResult.php │ │ │ ├── CloudPcManagementAssignmentTarget.php │ │ │ ├── CloudPcManagementGroupAssignmentTarget.php │ │ │ ├── CloudPcManagementService.php │ │ │ ├── CloudPcOnPremisesConnection.php │ │ │ ├── CloudPcOnPremisesConnectionHealthCheck.php │ │ │ ├── CloudPcOnPremisesConnectionHealthCheckErrorType.php │ │ │ ├── CloudPcOnPremisesConnectionStatus.php │ │ │ ├── CloudPcOnPremisesConnectionStatusDetails.php │ │ │ ├── CloudPcOnPremisesConnectionType.php │ │ │ ├── CloudPcOperatingSystem.php │ │ │ ├── CloudPcOrganizationSettings.php │ │ │ ├── CloudPcPartnerAgentInstallResult.php │ │ │ ├── CloudPcPartnerAgentInstallStatus.php │ │ │ ├── CloudPcPartnerAgentName.php │ │ │ ├── CloudPcPowerState.php │ │ │ ├── CloudPcProvisioningPolicy.php │ │ │ ├── CloudPcProvisioningPolicyAssignment.php │ │ │ ├── CloudPcProvisioningPolicyImageType.php │ │ │ ├── CloudPcProvisioningType.php │ │ │ ├── CloudPcRegionGroup.php │ │ │ ├── CloudPcRemoteActionCapability.php │ │ │ ├── CloudPcRemoteActionName.php │ │ │ ├── CloudPcRemoteActionResult.php │ │ │ ├── CloudPcReportName.php │ │ │ ├── CloudPcReports.php │ │ │ ├── CloudPcResizeValidationCode.php │ │ │ ├── CloudPcResizeValidationResult.php │ │ │ ├── CloudPcRestorePointSetting.php │ │ │ ├── CloudPcReviewStatus.php │ │ │ ├── CloudPcServicePlan.php │ │ │ ├── CloudPcServicePlanType.php │ │ │ ├── CloudPcSharedUseServicePlan.php │ │ │ ├── CloudPcSnapshot.php │ │ │ ├── CloudPcSnapshotStatus.php │ │ │ ├── CloudPcSnapshotType.php │ │ │ ├── CloudPcSourceDeviceImage.php │ │ │ ├── CloudPcStatus.php │ │ │ ├── CloudPcStatusDetails.php │ │ │ ├── CloudPcSubscription.php │ │ │ ├── CloudPcSupportedRegion.php │ │ │ ├── CloudPcSupportedRegionStatus.php │ │ │ ├── CloudPcUserAccessLevel.php │ │ │ ├── CloudPcUserAccountType.php │ │ │ ├── CloudPcUserRoleScopeTagInfo.php │ │ │ ├── CloudPcUserSetting.php │ │ │ ├── CloudPcUserSettingAssignment.php │ │ │ ├── CloudPcWindowsSettings.php │ │ │ ├── CoachmarkLocation.php │ │ │ ├── CoachmarkLocationType.php │ │ │ ├── Code.php │ │ │ ├── CollapseProperty.php │ │ │ ├── ColumnDefinition.php │ │ │ ├── ColumnLink.php │ │ │ ├── ColumnTypes.php │ │ │ ├── ColumnValidation.php │ │ │ ├── ComanagedDevicesSummary.php │ │ │ ├── ComanagementEligibleDevice.php │ │ │ ├── ComanagementEligibleDevicesSummary.php │ │ │ ├── ComanagementEligibleType.php │ │ │ ├── Command.php │ │ │ ├── CommentAction.php │ │ │ ├── CommsApplication.php │ │ │ ├── CommsNotification.php │ │ │ ├── CommsNotifications.php │ │ │ ├── CommsOperation.php │ │ │ ├── CommunicationsApplicationIdentity.php │ │ │ ├── CommunicationsApplicationInstanceIdentity.php │ │ │ ├── CommunicationsEncryptedIdentity.php │ │ │ ├── CommunicationsGuestIdentity.php │ │ │ ├── CommunicationsIdentitySet.php │ │ │ ├── CommunicationsPhoneIdentity.php │ │ │ ├── CommunicationsUserIdentity.php │ │ │ ├── Company.php │ │ │ ├── CompanyDetail.php │ │ │ ├── CompanyInformation.php │ │ │ ├── CompanyPortalAction.php │ │ │ ├── CompanyPortalBlockedAction.php │ │ │ ├── ComplexExtensionValue.php │ │ │ ├── Compliance.php │ │ │ ├── ComplianceInformation.php │ │ │ ├── ComplianceManagementPartner.php │ │ │ ├── ComplianceManagementPartnerAssignment.php │ │ │ ├── ComplianceState.php │ │ │ ├── ComplianceStatus.php │ │ │ ├── Component.php │ │ │ ├── ConditionalAccessAllExternalTenants.php │ │ │ ├── ConditionalAccessApplications.php │ │ │ ├── ConditionalAccessClientApp.php │ │ │ ├── ConditionalAccessClientApplications.php │ │ │ ├── ConditionalAccessConditionSet.php │ │ │ ├── ConditionalAccessConditions.php │ │ │ ├── ConditionalAccessDevicePlatform.php │ │ │ ├── ConditionalAccessDeviceStates.php │ │ │ ├── ConditionalAccessDevices.php │ │ │ ├── ConditionalAccessEnumeratedExternalTenants.php │ │ │ ├── ConditionalAccessExternalTenants.php │ │ │ ├── ConditionalAccessExternalTenantsMembershipKind.php │ │ │ ├── ConditionalAccessFilter.php │ │ │ ├── ConditionalAccessGrantControl.php │ │ │ ├── ConditionalAccessGrantControls.php │ │ │ ├── ConditionalAccessGuestOrExternalUserTypes.php │ │ │ ├── ConditionalAccessGuestsOrExternalUsers.php │ │ │ ├── ConditionalAccessLocations.php │ │ │ ├── ConditionalAccessPlatforms.php │ │ │ ├── ConditionalAccessPolicy.php │ │ │ ├── ConditionalAccessPolicyDetail.php │ │ │ ├── ConditionalAccessPolicyState.php │ │ │ ├── ConditionalAccessRoot.php │ │ │ ├── ConditionalAccessRule.php │ │ │ ├── ConditionalAccessRuleSatisfied.php │ │ │ ├── ConditionalAccessSessionControl.php │ │ │ ├── ConditionalAccessSessionControls.php │ │ │ ├── ConditionalAccessStatus.php │ │ │ ├── ConditionalAccessTemplate.php │ │ │ ├── ConditionalAccessUsers.php │ │ │ ├── ConfigManagerCollection.php │ │ │ ├── ConfigManagerPolicySummary.php │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationManagerAction.php │ │ │ ├── ConfigurationManagerActionDeliveryStatus.php │ │ │ ├── ConfigurationManagerActionResult.php │ │ │ ├── ConfigurationManagerActionType.php │ │ │ ├── ConfigurationManagerClientEnabledFeatures.php │ │ │ ├── ConfigurationManagerClientHealthState.php │ │ │ ├── ConfigurationManagerClientInformation.php │ │ │ ├── ConfigurationManagerClientState.php │ │ │ ├── ConfigurationManagerCollectionAssignmentTarget.php │ │ │ ├── ConfigurationUsage.php │ │ │ ├── ConfirmedBy.php │ │ │ ├── ConnectedOrganization.php │ │ │ ├── ConnectedOrganizationMembers.php │ │ │ ├── ConnectedOrganizationState.php │ │ │ ├── ConnectionDirection.php │ │ │ ├── ConnectionInfo.php │ │ │ ├── ConnectionOperation.php │ │ │ ├── ConnectionOperationStatus.php │ │ │ ├── ConnectionState.php │ │ │ ├── ConnectionStatus.php │ │ │ ├── Connector.php │ │ │ ├── ConnectorGroup.php │ │ │ ├── ConnectorGroupRegion.php │ │ │ ├── ConnectorGroupType.php │ │ │ ├── ConnectorHealthState.php │ │ │ ├── ConnectorName.php │ │ │ ├── ConnectorStatus.php │ │ │ ├── ConnectorStatusDetails.php │ │ │ ├── ConsentRequestFilterByCurrentUserOptions.php │ │ │ ├── Contact.php │ │ │ ├── ContactFolder.php │ │ │ ├── ContactMergeSuggestions.php │ │ │ ├── ContactRelationship.php │ │ │ ├── ContainerFilter.php │ │ │ ├── ContentAlignment.php │ │ │ ├── ContentApprovalStatusColumn.php │ │ │ ├── ContentClassification.php │ │ │ ├── ContentFormat.php │ │ │ ├── ContentInfo.php │ │ │ ├── ContentMetadata.php │ │ │ ├── ContentProperties.php │ │ │ ├── ContentSharingSession.php │ │ │ ├── ContentState.php │ │ │ ├── ContentType.php │ │ │ ├── ContentTypeInfo.php │ │ │ ├── ContentTypeOrder.php │ │ │ ├── ContinuousAccessEvaluationMode.php │ │ │ ├── ContinuousAccessEvaluationPolicy.php │ │ │ ├── ContinuousAccessEvaluationSessionControl.php │ │ │ ├── Contract.php │ │ │ ├── ControlScore.php │ │ │ ├── Conversation.php │ │ │ ├── ConversationMember.php │ │ │ ├── ConversationMemberRoleUpdatedEventMessageDetail.php │ │ │ ├── ConversationThread.php │ │ │ ├── ConvertIdResult.php │ │ │ ├── CopyNotebookModel.php │ │ │ ├── CorsConfiguration.php │ │ │ ├── CorsConfiguration_v2.php │ │ │ ├── CountryLookupMethodType.php │ │ │ ├── CountryNamedLocation.php │ │ │ ├── CountryRegion.php │ │ │ ├── CourseStatus.php │ │ │ ├── CreateAction.php │ │ │ ├── CreateRemoteHelpSessionResponse.php │ │ │ ├── Credential.php │ │ │ ├── CredentialSingleSignOnExtension.php │ │ │ ├── CredentialUsageSummary.php │ │ │ ├── CredentialUserRegistrationCount.php │ │ │ ├── CredentialUserRegistrationDetails.php │ │ │ ├── CrossCloudAzureActiveDirectoryTenant.php │ │ │ ├── CrossTenantAccessPolicy.php │ │ │ ├── CrossTenantAccessPolicyB2BSetting.php │ │ │ ├── CrossTenantAccessPolicyConfigurationDefault.php │ │ │ ├── CrossTenantAccessPolicyConfigurationPartner.php │ │ │ ├── CrossTenantAccessPolicyInboundTrust.php │ │ │ ├── CrossTenantAccessPolicyTarget.php │ │ │ ├── CrossTenantAccessPolicyTargetConfiguration.php │ │ │ ├── CrossTenantAccessPolicyTargetConfigurationAccessType.php │ │ │ ├── CrossTenantAccessPolicyTargetType.php │ │ │ ├── CrossTenantAccessPolicyTenantRestrictions.php │ │ │ ├── CrossTenantIdentitySyncPolicyPartner.php │ │ │ ├── CrossTenantUserSyncInbound.php │ │ │ ├── CryptographySuite.php │ │ │ ├── Currency.php │ │ │ ├── CurrencyColumn.php │ │ │ ├── CurrentLabel.php │ │ │ ├── CustomAccessPackageWorkflowExtension.php │ │ │ ├── CustomAction.php │ │ │ ├── CustomAppScope.php │ │ │ ├── CustomAppScopeAttributesDictionary.php │ │ │ ├── CustomAuthenticationExtension.php │ │ │ ├── CustomCalloutExtension.php │ │ │ ├── CustomExtensionAuthenticationConfiguration.php │ │ │ ├── CustomExtensionCallbackConfiguration.php │ │ │ ├── CustomExtensionCalloutInstance.php │ │ │ ├── CustomExtensionCalloutInstanceStatus.php │ │ │ ├── CustomExtensionCalloutRequest.php │ │ │ ├── CustomExtensionCalloutResponse.php │ │ │ ├── CustomExtensionCalloutResult.php │ │ │ ├── CustomExtensionClientConfiguration.php │ │ │ ├── CustomExtensionData.php │ │ │ ├── CustomExtensionEndpointConfiguration.php │ │ │ ├── CustomExtensionHandler.php │ │ │ ├── CustomExtensionHandlerInstance.php │ │ │ ├── CustomExtensionStageSetting.php │ │ │ ├── CustomQuestionAnswer.php │ │ │ ├── CustomSecurityAttributeDefinition.php │ │ │ ├── CustomSecurityAttributeValue.php │ │ │ ├── CustomSubjectAlternativeName.php │ │ │ ├── CustomTimeZone.php │ │ │ ├── CustomUpdateTimeWindow.php │ │ │ ├── Customer.php │ │ │ ├── CustomerPayment.php │ │ │ ├── CustomerPaymentJournal.php │ │ │ ├── DataClassificationService.php │ │ │ ├── DataLossPreventionPolicy.php │ │ │ ├── DataPolicyOperation.php │ │ │ ├── DataPolicyOperationStatus.php │ │ │ ├── DataProcessorServiceForWindowsFeaturesOnboarding.php │ │ │ ├── DataSharingConsent.php │ │ │ ├── DataStoreField.php │ │ │ ├── DataSubject.php │ │ │ ├── DataSubjectType.php │ │ │ ├── DataType.php │ │ │ ├── DateTimeColumn.php │ │ │ ├── DateTimeTimeZone.php │ │ │ ├── DateTimeTimeZoneType.php │ │ │ ├── DayOfWeek.php │ │ │ ├── DaylightTimeZoneOffset.php │ │ │ ├── DecisionItemPrincipalResourceMembership.php │ │ │ ├── DecisionItemPrincipalResourceMembershipType.php │ │ │ ├── DefaultColumnValue.php │ │ │ ├── DefaultDeviceCompliancePolicy.php │ │ │ ├── DefaultManagedAppProtection.php │ │ │ ├── DefaultMfaMethodType.php │ │ │ ├── DefaultUserRoleOverride.php │ │ │ ├── DefaultUserRolePermissions.php │ │ │ ├── DefenderAttackSurfaceType.php │ │ │ ├── DefenderCloudBlockLevelType.php │ │ │ ├── DefenderDetectedMalwareActions.php │ │ │ ├── DefenderMonitorFileActivity.php │ │ │ ├── DefenderPotentiallyUnwantedAppAction.php │ │ │ ├── DefenderPromptForSampleSubmission.php │ │ │ ├── DefenderProtectionType.php │ │ │ ├── DefenderRealtimeScanDirection.php │ │ │ ├── DefenderScanType.php │ │ │ ├── DefenderSecurityCenterITContactDisplayType.php │ │ │ ├── DefenderSecurityCenterNotificationsFromAppType.php │ │ │ ├── DefenderSubmitSamplesConsentType.php │ │ │ ├── DefenderThreatAction.php │ │ │ ├── DelegateMeetingMessageDeliveryOptions.php │ │ │ ├── DelegatedAdminAccessAssignment.php │ │ │ ├── DelegatedAdminAccessAssignmentStatus.php │ │ │ ├── DelegatedAdminAccessContainer.php │ │ │ ├── DelegatedAdminAccessContainerType.php │ │ │ ├── DelegatedAdminAccessDetails.php │ │ │ ├── DelegatedAdminCustomer.php │ │ │ ├── DelegatedAdminRelationship.php │ │ │ ├── DelegatedAdminRelationshipCustomerParticipant.php │ │ │ ├── DelegatedAdminRelationshipOperation.php │ │ │ ├── DelegatedAdminRelationshipOperationType.php │ │ │ ├── DelegatedAdminRelationshipRequest.php │ │ │ ├── DelegatedAdminRelationshipRequestAction.php │ │ │ ├── DelegatedAdminRelationshipRequestStatus.php │ │ │ ├── DelegatedAdminRelationshipStatus.php │ │ │ ├── DelegatedAdminServiceManagementDetail.php │ │ │ ├── DelegatedPermissionClassification.php │ │ │ ├── DeleteAction.php │ │ │ ├── DeleteUserFromSharedAppleDeviceActionResult.php │ │ │ ├── Deleted.php │ │ │ ├── DeletedItemContainer.php │ │ │ ├── DeletedTeam.php │ │ │ ├── DeliveryOptimizationBandwidth.php │ │ │ ├── DeliveryOptimizationBandwidthAbsolute.php │ │ │ ├── DeliveryOptimizationBandwidthBusinessHoursLimit.php │ │ │ ├── DeliveryOptimizationBandwidthHoursWithPercentage.php │ │ │ ├── DeliveryOptimizationBandwidthPercentage.php │ │ │ ├── DeliveryOptimizationGroupIdCustom.php │ │ │ ├── DeliveryOptimizationGroupIdOptionsType.php │ │ │ ├── DeliveryOptimizationGroupIdSource.php │ │ │ ├── DeliveryOptimizationGroupIdSourceOptions.php │ │ │ ├── DeliveryOptimizationMaxCacheSize.php │ │ │ ├── DeliveryOptimizationMaxCacheSizeAbsolute.php │ │ │ ├── DeliveryOptimizationMaxCacheSizePercentage.php │ │ │ ├── DeliveryOptimizationRestrictPeerSelectionByOptions.php │ │ │ ├── DeltaParticipants.php │ │ │ ├── DepEnrollmentBaseProfile.php │ │ │ ├── DepEnrollmentProfile.php │ │ │ ├── DepIOSEnrollmentProfile.php │ │ │ ├── DepMacOSEnrollmentProfile.php │ │ │ ├── DepOnboardingSetting.php │ │ │ ├── DepTokenType.php │ │ │ ├── DerivedCredentialProviderType.php │ │ │ ├── DetailsInfo.php │ │ │ ├── DetectedApp.php │ │ │ ├── DetectedAppPlatformType.php │ │ │ ├── DetectedSensitiveContent.php │ │ │ ├── DetectedSensitiveContentBase.php │ │ │ ├── DetectedSensitiveContentWrapper.php │ │ │ ├── Device.php │ │ │ ├── DeviceActionResult.php │ │ │ ├── DeviceAndAppManagementAssignedRoleDetails.php │ │ │ ├── DeviceAndAppManagementAssignmentFilter.php │ │ │ ├── DeviceAndAppManagementAssignmentFilterType.php │ │ │ ├── DeviceAndAppManagementAssignmentSource.php │ │ │ ├── DeviceAndAppManagementAssignmentTarget.php │ │ │ ├── DeviceAndAppManagementData.php │ │ │ ├── DeviceAndAppManagementRoleAssignment.php │ │ │ ├── DeviceAndAppManagementRoleDefinition.php │ │ │ ├── DeviceAppManagement.php │ │ │ ├── DeviceAppManagementTask.php │ │ │ ├── DeviceAppManagementTaskCategory.php │ │ │ ├── DeviceAppManagementTaskPriority.php │ │ │ ├── DeviceAppManagementTaskStatus.php │ │ │ ├── DeviceCategory.php │ │ │ ├── DeviceComanagementAuthorityConfiguration.php │ │ │ ├── DeviceComplianceActionItem.php │ │ │ ├── DeviceComplianceActionType.php │ │ │ ├── DeviceComplianceDeviceOverview.php │ │ │ ├── DeviceComplianceDeviceStatus.php │ │ │ ├── DeviceCompliancePolicy.php │ │ │ ├── DeviceCompliancePolicyAssignment.php │ │ │ ├── DeviceCompliancePolicyDeviceStateSummary.php │ │ │ ├── DeviceCompliancePolicyGroupAssignment.php │ │ │ ├── DeviceCompliancePolicyPolicySetItem.php │ │ │ ├── DeviceCompliancePolicyScript.php │ │ │ ├── DeviceCompliancePolicySettingState.php │ │ │ ├── DeviceCompliancePolicySettingStateSummary.php │ │ │ ├── DeviceCompliancePolicyState.php │ │ │ ├── DeviceComplianceScheduledActionForRule.php │ │ │ ├── DeviceComplianceScript.php │ │ │ ├── DeviceComplianceScriptDeviceState.php │ │ │ ├── DeviceComplianceScriptError.php │ │ │ ├── DeviceComplianceScriptRulOperator.php │ │ │ ├── DeviceComplianceScriptRule.php │ │ │ ├── DeviceComplianceScriptRuleDataType.php │ │ │ ├── DeviceComplianceScriptRuleError.php │ │ │ ├── DeviceComplianceScriptRulesValidationError.php │ │ │ ├── DeviceComplianceScriptRunSummary.php │ │ │ ├── DeviceComplianceScriptValidationResult.php │ │ │ ├── DeviceComplianceSettingState.php │ │ │ ├── DeviceComplianceUserOverview.php │ │ │ ├── DeviceComplianceUserStatus.php │ │ │ ├── DeviceConfigAssignmentIntent.php │ │ │ ├── DeviceConfiguration.php │ │ │ ├── DeviceConfigurationAssignment.php │ │ │ ├── DeviceConfigurationConflictSummary.php │ │ │ ├── DeviceConfigurationDeviceOverview.php │ │ │ ├── DeviceConfigurationDeviceStateSummary.php │ │ │ ├── DeviceConfigurationDeviceStatus.php │ │ │ ├── DeviceConfigurationGroupAssignment.php │ │ │ ├── DeviceConfigurationPolicySetItem.php │ │ │ ├── DeviceConfigurationSettingState.php │ │ │ ├── DeviceConfigurationState.php │ │ │ ├── DeviceConfigurationTargetedUserAndDevice.php │ │ │ ├── DeviceConfigurationUserOverview.php │ │ │ ├── DeviceConfigurationUserStateSummary.php │ │ │ ├── DeviceConfigurationUserStatus.php │ │ │ ├── DeviceCustomAttributeShellScript.php │ │ │ ├── DeviceCustomAttributeValueType.php │ │ │ ├── DeviceDetail.php │ │ │ ├── DeviceEnrollmentConfiguration.php │ │ │ ├── DeviceEnrollmentConfigurationType.php │ │ │ ├── DeviceEnrollmentFailureReason.php │ │ │ ├── DeviceEnrollmentLimitConfiguration.php │ │ │ ├── DeviceEnrollmentNotificationConfiguration.php │ │ │ ├── DeviceEnrollmentPlatformRestriction.php │ │ │ ├── DeviceEnrollmentPlatformRestrictionConfiguration.php │ │ │ ├── DeviceEnrollmentPlatformRestrictionsConfiguration.php │ │ │ ├── DeviceEnrollmentType.php │ │ │ ├── DeviceEnrollmentWindowsHelloForBusinessConfiguration.php │ │ │ ├── DeviceEventLevel.php │ │ │ ├── DeviceExchangeAccessStateSummary.php │ │ │ ├── DeviceGeoLocation.php │ │ │ ├── DeviceGuardLocalSystemAuthorityCredentialGuardState.php │ │ │ ├── DeviceGuardLocalSystemAuthorityCredentialGuardType.php │ │ │ ├── DeviceGuardVirtualizationBasedSecurityHardwareRequirementState.php │ │ │ ├── DeviceGuardVirtualizationBasedSecurityState.php │ │ │ ├── DeviceHealth.php │ │ │ ├── DeviceHealthAttestationState.php │ │ │ ├── DeviceHealthScript.php │ │ │ ├── DeviceHealthScriptAssignment.php │ │ │ ├── DeviceHealthScriptBooleanParameter.php │ │ │ ├── DeviceHealthScriptDailySchedule.php │ │ │ ├── DeviceHealthScriptDeviceState.php │ │ │ ├── DeviceHealthScriptHourlySchedule.php │ │ │ ├── DeviceHealthScriptIntegerParameter.php │ │ │ ├── DeviceHealthScriptParameter.php │ │ │ ├── DeviceHealthScriptPolicyState.php │ │ │ ├── DeviceHealthScriptRemediationHistory.php │ │ │ ├── DeviceHealthScriptRemediationHistoryData.php │ │ │ ├── DeviceHealthScriptRemediationSummary.php │ │ │ ├── DeviceHealthScriptRunOnceSchedule.php │ │ │ ├── DeviceHealthScriptRunSchedule.php │ │ │ ├── DeviceHealthScriptRunSummary.php │ │ │ ├── DeviceHealthScriptStringParameter.php │ │ │ ├── DeviceHealthScriptTimeSchedule.php │ │ │ ├── DeviceInstallState.php │ │ │ ├── DeviceKey.php │ │ │ ├── DeviceLicensingStatus.php │ │ │ ├── DeviceLocalCredential.php │ │ │ ├── DeviceLocalCredentialInfo.php │ │ │ ├── DeviceLogCollectionRequest.php │ │ │ ├── DeviceLogCollectionResponse.php │ │ │ ├── DeviceLogCollectionTemplateType.php │ │ │ ├── DeviceManagement.php │ │ │ ├── DeviceManagementAbstractComplexSettingDefinition.php │ │ │ ├── DeviceManagementAbstractComplexSettingInstance.php │ │ │ ├── DeviceManagementApplicabilityRuleDeviceMode.php │ │ │ ├── DeviceManagementApplicabilityRuleOsEdition.php │ │ │ ├── DeviceManagementApplicabilityRuleOsVersion.php │ │ │ ├── DeviceManagementApplicabilityRuleType.php │ │ │ ├── DeviceManagementAutopilotEvent.php │ │ │ ├── DeviceManagementAutopilotPolicyComplianceStatus.php │ │ │ ├── DeviceManagementAutopilotPolicyStatusDetail.php │ │ │ ├── DeviceManagementAutopilotPolicyType.php │ │ │ ├── DeviceManagementBooleanSettingInstance.php │ │ │ ├── DeviceManagementCachedReportConfiguration.php │ │ │ ├── DeviceManagementCertificationAuthority.php │ │ │ ├── DeviceManagementCollectionSettingDefinition.php │ │ │ ├── DeviceManagementCollectionSettingInstance.php │ │ │ ├── DeviceManagementComparisonResult.php │ │ │ ├── DeviceManagementComplexSettingDefinition.php │ │ │ ├── DeviceManagementComplexSettingInstance.php │ │ │ ├── DeviceManagementComplianceActionItem.php │ │ │ ├── DeviceManagementComplianceActionType.php │ │ │ ├── DeviceManagementCompliancePolicy.php │ │ │ ├── DeviceManagementComplianceScheduledActionForRule.php │ │ │ ├── DeviceManagementConfigurationApplicationSettingApplicability.php │ │ │ ├── DeviceManagementConfigurationAzureAdTrustType.php │ │ │ ├── DeviceManagementConfigurationCategory.php │ │ │ ├── DeviceManagementConfigurationChoiceSettingCollectionDefinition.php │ │ │ ├── DeviceManagementConfigurationChoiceSettingCollectionInstance.php │ │ │ ├── DeviceManagementConfigurationChoiceSettingCollectionInstanceTemplate.php │ │ │ ├── DeviceManagementConfigurationChoiceSettingDefinition.php │ │ │ ├── DeviceManagementConfigurationChoiceSettingInstance.php │ │ │ ├── DeviceManagementConfigurationChoiceSettingInstanceTemplate.php │ │ │ ├── DeviceManagementConfigurationChoiceSettingValue.php │ │ │ ├── DeviceManagementConfigurationChoiceSettingValueConstantDefaultTemplate.php │ │ │ ├── DeviceManagementConfigurationChoiceSettingValueDefaultTemplate.php │ │ │ ├── DeviceManagementConfigurationChoiceSettingValueDefinitionTemplate.php │ │ │ ├── DeviceManagementConfigurationChoiceSettingValueTemplate.php │ │ │ ├── DeviceManagementConfigurationControlType.php │ │ │ ├── DeviceManagementConfigurationDependentOn.php │ │ │ ├── DeviceManagementConfigurationDeviceMode.php │ │ │ ├── DeviceManagementConfigurationExchangeOnlineSettingApplicability.php │ │ │ ├── DeviceManagementConfigurationGroupSettingCollectionInstance.php │ │ │ ├── DeviceManagementConfigurationGroupSettingCollectionInstanceTemplate.php │ │ │ ├── DeviceManagementConfigurationGroupSettingInstance.php │ │ │ ├── DeviceManagementConfigurationGroupSettingInstanceTemplate.php │ │ │ ├── DeviceManagementConfigurationGroupSettingValue.php │ │ │ ├── DeviceManagementConfigurationGroupSettingValueTemplate.php │ │ │ ├── DeviceManagementConfigurationIntegerSettingValue.php │ │ │ ├── DeviceManagementConfigurationIntegerSettingValueConstantDefaultTemplate.php │ │ │ ├── DeviceManagementConfigurationIntegerSettingValueDefaultTemplate.php │ │ │ ├── DeviceManagementConfigurationIntegerSettingValueDefinition.php │ │ │ ├── DeviceManagementConfigurationIntegerSettingValueDefinitionTemplate.php │ │ │ ├── DeviceManagementConfigurationIntegerSettingValueTemplate.php │ │ │ ├── DeviceManagementConfigurationOptionDefinition.php │ │ │ ├── DeviceManagementConfigurationOptionDefinitionTemplate.php │ │ │ ├── DeviceManagementConfigurationPlatforms.php │ │ │ ├── DeviceManagementConfigurationPolicy.php │ │ │ ├── DeviceManagementConfigurationPolicyAssignment.php │ │ │ ├── DeviceManagementConfigurationPolicyPolicySetItem.php │ │ │ ├── DeviceManagementConfigurationPolicyTemplate.php │ │ │ ├── DeviceManagementConfigurationPolicyTemplateReference.php │ │ │ ├── DeviceManagementConfigurationRedirectSettingDefinition.php │ │ │ ├── DeviceManagementConfigurationReferenceSettingValue.php │ │ │ ├── DeviceManagementConfigurationReferredSettingInformation.php │ │ │ ├── DeviceManagementConfigurationSecretSettingValue.php │ │ │ ├── DeviceManagementConfigurationSecretSettingValueState.php │ │ │ ├── DeviceManagementConfigurationSetting.php │ │ │ ├── DeviceManagementConfigurationSettingAccessTypes.php │ │ │ ├── DeviceManagementConfigurationSettingApplicability.php │ │ │ ├── DeviceManagementConfigurationSettingDefinition.php │ │ │ ├── DeviceManagementConfigurationSettingDependedOnBy.php │ │ │ ├── DeviceManagementConfigurationSettingGroupCollectionDefinition.php │ │ │ ├── DeviceManagementConfigurationSettingGroupCollectionInstance.php │ │ │ ├── DeviceManagementConfigurationSettingGroupDefinition.php │ │ │ ├── DeviceManagementConfigurationSettingGroupInstance.php │ │ │ ├── DeviceManagementConfigurationSettingInstance.php │ │ │ ├── DeviceManagementConfigurationSettingInstanceTemplate.php │ │ │ ├── DeviceManagementConfigurationSettingInstanceTemplateReference.php │ │ │ ├── DeviceManagementConfigurationSettingOccurrence.php │ │ │ ├── DeviceManagementConfigurationSettingTemplate.php │ │ │ ├── DeviceManagementConfigurationSettingUsage.php │ │ │ ├── DeviceManagementConfigurationSettingValue.php │ │ │ ├── DeviceManagementConfigurationSettingValueDefinition.php │ │ │ ├── DeviceManagementConfigurationSettingValueTemplateReference.php │ │ │ ├── DeviceManagementConfigurationSettingVisibility.php │ │ │ ├── DeviceManagementConfigurationSimpleSettingCollectionDefinition.php │ │ │ ├── DeviceManagementConfigurationSimpleSettingCollectionInstance.php │ │ │ ├── DeviceManagementConfigurationSimpleSettingCollectionInstanceTemplate.php │ │ │ ├── DeviceManagementConfigurationSimpleSettingDefinition.php │ │ │ ├── DeviceManagementConfigurationSimpleSettingInstance.php │ │ │ ├── DeviceManagementConfigurationSimpleSettingInstanceTemplate.php │ │ │ ├── DeviceManagementConfigurationSimpleSettingValue.php │ │ │ ├── DeviceManagementConfigurationSimpleSettingValueTemplate.php │ │ │ ├── DeviceManagementConfigurationStringFormat.php │ │ │ ├── DeviceManagementConfigurationStringSettingValue.php │ │ │ ├── DeviceManagementConfigurationStringSettingValueConstantDefaultTemplate.php │ │ │ ├── DeviceManagementConfigurationStringSettingValueDefaultTemplate.php │ │ │ ├── DeviceManagementConfigurationStringSettingValueDefinition.php │ │ │ ├── DeviceManagementConfigurationStringSettingValueTemplate.php │ │ │ ├── DeviceManagementConfigurationTechnologies.php │ │ │ ├── DeviceManagementConfigurationTemplateFamily.php │ │ │ ├── DeviceManagementConfigurationWindowsSettingApplicability.php │ │ │ ├── DeviceManagementConfigurationWindowsSkus.php │ │ │ ├── DeviceManagementConstraint.php │ │ │ ├── DeviceManagementDerivedCredentialIssuer.php │ │ │ ├── DeviceManagementDerivedCredentialNotificationType.php │ │ │ ├── DeviceManagementDerivedCredentialSettings.php │ │ │ ├── DeviceManagementDomainJoinConnector.php │ │ │ ├── DeviceManagementDomainJoinConnectorState.php │ │ │ ├── DeviceManagementEnumConstraint.php │ │ │ ├── DeviceManagementEnumValue.php │ │ │ ├── DeviceManagementExchangeAccessLevel.php │ │ │ ├── DeviceManagementExchangeAccessRule.php │ │ │ ├── DeviceManagementExchangeAccessRuleType.php │ │ │ ├── DeviceManagementExchangeAccessState.php │ │ │ ├── DeviceManagementExchangeAccessStateReason.php │ │ │ ├── DeviceManagementExchangeConnector.php │ │ │ ├── DeviceManagementExchangeConnectorStatus.php │ │ │ ├── DeviceManagementExchangeConnectorSyncType.php │ │ │ ├── DeviceManagementExchangeConnectorType.php │ │ │ ├── DeviceManagementExchangeDeviceClass.php │ │ │ ├── DeviceManagementExchangeOnPremisesPolicy.php │ │ │ ├── DeviceManagementExportJob.php │ │ │ ├── DeviceManagementExportJobLocalizationType.php │ │ │ ├── DeviceManagementIntegerSettingInstance.php │ │ │ ├── DeviceManagementIntent.php │ │ │ ├── DeviceManagementIntentAssignment.php │ │ │ ├── DeviceManagementIntentCustomizedSetting.php │ │ │ ├── DeviceManagementIntentDeviceSettingStateSummary.php │ │ │ ├── DeviceManagementIntentDeviceState.php │ │ │ ├── DeviceManagementIntentDeviceStateSummary.php │ │ │ ├── DeviceManagementIntentSettingCategory.php │ │ │ ├── DeviceManagementIntentSettingSecretConstraint.php │ │ │ ├── DeviceManagementIntentUserState.php │ │ │ ├── DeviceManagementIntentUserStateSummary.php │ │ │ ├── DeviceManagementPartner.php │ │ │ ├── DeviceManagementPartnerAppType.php │ │ │ ├── DeviceManagementPartnerAssignment.php │ │ │ ├── DeviceManagementPartnerTenantState.php │ │ │ ├── DeviceManagementPriorityMetaData.php │ │ │ ├── DeviceManagementReportFileFormat.php │ │ │ ├── DeviceManagementReportStatus.php │ │ │ ├── DeviceManagementReports.php │ │ │ ├── DeviceManagementResourceAccessProfileAssignment.php │ │ │ ├── DeviceManagementResourceAccessProfileBase.php │ │ │ ├── DeviceManagementResourceAccessProfileIntent.php │ │ │ ├── DeviceManagementReusablePolicySetting.php │ │ │ ├── DeviceManagementScript.php │ │ │ ├── DeviceManagementScriptAssignment.php │ │ │ ├── DeviceManagementScriptDeviceState.php │ │ │ ├── DeviceManagementScriptGroupAssignment.php │ │ │ ├── DeviceManagementScriptPolicySetItem.php │ │ │ ├── DeviceManagementScriptRunSummary.php │ │ │ ├── DeviceManagementScriptUserState.php │ │ │ ├── DeviceManagementSettingAbstractImplementationConstraint.php │ │ │ ├── DeviceManagementSettingAppConstraint.php │ │ │ ├── DeviceManagementSettingBooleanConstraint.php │ │ │ ├── DeviceManagementSettingCategory.php │ │ │ ├── DeviceManagementSettingCollectionConstraint.php │ │ │ ├── DeviceManagementSettingComparison.php │ │ │ ├── DeviceManagementSettingDefinition.php │ │ │ ├── DeviceManagementSettingDependency.php │ │ │ ├── DeviceManagementSettingEnrollmentTypeConstraint.php │ │ │ ├── DeviceManagementSettingFileConstraint.php │ │ │ ├── DeviceManagementSettingInsightsDefinition.php │ │ │ ├── DeviceManagementSettingInstance.php │ │ │ ├── DeviceManagementSettingIntegerConstraint.php │ │ │ ├── DeviceManagementSettingProfileConstraint.php │ │ │ ├── DeviceManagementSettingRegexConstraint.php │ │ │ ├── DeviceManagementSettingRequiredConstraint.php │ │ │ ├── DeviceManagementSettingSddlConstraint.php │ │ │ ├── DeviceManagementSettingStringLengthConstraint.php │ │ │ ├── DeviceManagementSettingXmlConstraint.php │ │ │ ├── DeviceManagementSettings.php │ │ │ ├── DeviceManagementStringSettingInstance.php │ │ │ ├── DeviceManagementSubscriptionState.php │ │ │ ├── DeviceManagementSubscriptions.php │ │ │ ├── DeviceManagementTemplate.php │ │ │ ├── DeviceManagementTemplateInsightsDefinition.php │ │ │ ├── DeviceManagementTemplateLifecycleState.php │ │ │ ├── DeviceManagementTemplateSettingCategory.php │ │ │ ├── DeviceManagementTemplateSubtype.php │ │ │ ├── DeviceManagementTemplateType.php │ │ │ ├── DeviceManagementTroubleshootingErrorDetails.php │ │ │ ├── DeviceManagementTroubleshootingErrorResource.php │ │ │ ├── DeviceManagementTroubleshootingEvent.php │ │ │ ├── DeviceManagementUserRightsLocalUserOrGroup.php │ │ │ ├── DeviceManagementUserRightsSetting.php │ │ │ ├── DeviceManangementIntentValueType.php │ │ │ ├── DeviceOperatingSystemSummary.php │ │ │ ├── DevicePlatformType.php │ │ │ ├── DeviceProtectionOverview.php │ │ │ ├── DeviceRegistrationPolicy.php │ │ │ ├── DeviceRegistrationState.php │ │ │ ├── DeviceRestrictionAction.php │ │ │ ├── DeviceScopeAction.php │ │ │ ├── DeviceScopeActionResult.php │ │ │ ├── DeviceScopeActionStatus.php │ │ │ ├── DeviceScopeOperator.php │ │ │ ├── DeviceScopeParameter.php │ │ │ ├── DeviceScopeStatus.php │ │ │ ├── DeviceSetupConfiguration.php │ │ │ ├── DeviceShellScript.php │ │ │ ├── DeviceThreatProtectionLevel.php │ │ │ ├── DeviceType.php │ │ │ ├── DeviceTypes.php │ │ │ ├── DevicesFilter.php │ │ │ ├── Diagnostic.php │ │ │ ├── DiagnosticDataSubmissionMode.php │ │ │ ├── DiamondModel.php │ │ │ ├── Dictionary.php │ │ │ ├── DiffieHellmanGroup.php │ │ │ ├── Dimension.php │ │ │ ├── DimensionValue.php │ │ │ ├── Directory.php │ │ │ ├── DirectoryAudit.php │ │ │ ├── DirectoryDefinition.php │ │ │ ├── DirectoryDefinitionDiscoverabilities.php │ │ │ ├── DirectoryObject.php │ │ │ ├── DirectoryObjectPartnerReference.php │ │ │ ├── DirectoryRole.php │ │ │ ├── DirectoryRoleAccessReviewPolicy.php │ │ │ ├── DirectoryRoleTemplate.php │ │ │ ├── DirectorySetting.php │ │ │ ├── DirectorySettingTemplate.php │ │ │ ├── DirectorySizeQuota.php │ │ │ ├── DisableAndDeleteUserApplyAction.php │ │ │ ├── DiscoveredSensitiveType.php │ │ │ ├── DiscoverySource.php │ │ │ ├── DiskType.php │ │ │ ├── DisplayNameLocalization.php │ │ │ ├── DlpAction.php │ │ │ ├── DlpActionInfo.php │ │ │ ├── DlpEvaluatePoliciesJobResponse.php │ │ │ ├── DlpEvaluatePoliciesRequest.php │ │ │ ├── DlpEvaluationInput.php │ │ │ ├── DlpEvaluationWindowsDevicesInput.php │ │ │ ├── DlpNotification.php │ │ │ ├── DlpPoliciesJobResult.php │ │ │ ├── DlpWindowsDevicesNotification.php │ │ │ ├── DmaGuardDeviceEnumerationPolicyType.php │ │ │ ├── Document.php │ │ │ ├── DocumentComment.php │ │ │ ├── DocumentCommentReply.php │ │ │ ├── DocumentSet.php │ │ │ ├── DocumentSetContent.php │ │ │ ├── DocumentSetVersion.php │ │ │ ├── DocumentSetVersionItem.php │ │ │ ├── Domain.php │ │ │ ├── DomainDnsCnameRecord.php │ │ │ ├── DomainDnsMxRecord.php │ │ │ ├── DomainDnsRecord.php │ │ │ ├── DomainDnsSrvRecord.php │ │ │ ├── DomainDnsTxtRecord.php │ │ │ ├── DomainDnsUnavailableRecord.php │ │ │ ├── DomainIdentitySource.php │ │ │ ├── DomainNameSource.php │ │ │ ├── DomainRegistrant.php │ │ │ ├── DomainSecurityProfile.php │ │ │ ├── DomainState.php │ │ │ ├── DowngradeJustification.php │ │ │ ├── Drive.php │ │ │ ├── DriveItem.php │ │ │ ├── DriveItemSource.php │ │ │ ├── DriveItemSourceApplication.php │ │ │ ├── DriveItemUploadableProperties.php │ │ │ ├── DriveItemVersion.php │ │ │ ├── DriveRecipient.php │ │ │ ├── DriverApprovalAction.php │ │ │ ├── DriverApprovalStatus.php │ │ │ ├── DriverCategory.php │ │ │ ├── DriverUpdateProfileApprovalType.php │ │ │ ├── EBookInstallSummary.php │ │ │ ├── EapFastConfiguration.php │ │ │ ├── EapType.php │ │ │ ├── EasAuthenticationMethod.php │ │ │ ├── EasEmailProfileConfigurationBase.php │ │ │ ├── EasServices.php │ │ │ ├── Edge.php │ │ │ ├── EdgeCookiePolicy.php │ │ │ ├── EdgeHomeButtonConfiguration.php │ │ │ ├── EdgeHomeButtonHidden.php │ │ │ ├── EdgeHomeButtonLoadsStartPage.php │ │ │ ├── EdgeHomeButtonOpensCustomURL.php │ │ │ ├── EdgeHomeButtonOpensNewTab.php │ │ │ ├── EdgeKioskModeRestrictionType.php │ │ │ ├── EdgeOpenOptions.php │ │ │ ├── EdgeSearchEngine.php │ │ │ ├── EdgeSearchEngineBase.php │ │ │ ├── EdgeSearchEngineCustom.php │ │ │ ├── EdgeSearchEngineType.php │ │ │ ├── EdgeTelemetryMode.php │ │ │ ├── EditAction.php │ │ │ ├── EditionUpgradeConfiguration.php │ │ │ ├── EditionUpgradeLicenseType.php │ │ │ ├── EducationAddToCalendarOptions.php │ │ │ ├── EducationAddedStudentAction.php │ │ │ ├── EducationAssignment.php │ │ │ ├── EducationAssignmentClassRecipient.php │ │ │ ├── EducationAssignmentDefaults.php │ │ │ ├── EducationAssignmentGrade.php │ │ │ ├── EducationAssignmentGradeType.php │ │ │ ├── EducationAssignmentGroupRecipient.php │ │ │ ├── EducationAssignmentIndividualRecipient.php │ │ │ ├── EducationAssignmentPointsGrade.php │ │ │ ├── EducationAssignmentPointsGradeType.php │ │ │ ├── EducationAssignmentRecipient.php │ │ │ ├── EducationAssignmentResource.php │ │ │ ├── EducationAssignmentSettings.php │ │ │ ├── EducationAssignmentStatus.php │ │ │ ├── EducationCategory.php │ │ │ ├── EducationClass.php │ │ │ ├── EducationCourse.php │ │ │ ├── EducationCsvDataProvider.php │ │ │ ├── EducationExcelResource.php │ │ │ ├── EducationExternalResource.php │ │ │ ├── EducationExternalSource.php │ │ │ ├── EducationFeedback.php │ │ │ ├── EducationFeedbackOutcome.php │ │ │ ├── EducationFeedbackResourceOutcome.php │ │ │ ├── EducationFeedbackResourceOutcomeStatus.php │ │ │ ├── EducationFileResource.php │ │ │ ├── EducationFileSynchronizationVerificationMessage.php │ │ │ ├── EducationGender.php │ │ │ ├── EducationGradingCategory.php │ │ │ ├── EducationIdentityCreationConfiguration.php │ │ │ ├── EducationIdentityDomain.php │ │ │ ├── EducationIdentityMatchingConfiguration.php │ │ │ ├── EducationIdentityMatchingOptions.php │ │ │ ├── EducationIdentitySynchronizationConfiguration.php │ │ │ ├── EducationItemBody.php │ │ │ ├── EducationLinkResource.php │ │ │ ├── EducationMediaResource.php │ │ │ ├── EducationOnPremisesInfo.php │ │ │ ├── EducationOneRosterApiDataProvider.php │ │ │ ├── EducationOrganization.php │ │ │ ├── EducationOutcome.php │ │ │ ├── EducationPointsOutcome.php │ │ │ ├── EducationPowerPointResource.php │ │ │ ├── EducationPowerSchoolDataProvider.php │ │ │ ├── EducationResource.php │ │ │ ├── EducationRoot.php │ │ │ ├── EducationRubric.php │ │ │ ├── EducationRubricOutcome.php │ │ │ ├── EducationSchool.php │ │ │ ├── EducationStudent.php │ │ │ ├── EducationSubmission.php │ │ │ ├── EducationSubmissionIndividualRecipient.php │ │ │ ├── EducationSubmissionRecipient.php │ │ │ ├── EducationSubmissionResource.php │ │ │ ├── EducationSubmissionStatus.php │ │ │ ├── EducationSynchronizationConnectionSettings.php │ │ │ ├── EducationSynchronizationCustomization.php │ │ │ ├── EducationSynchronizationCustomizations.php │ │ │ ├── EducationSynchronizationCustomizationsBase.php │ │ │ ├── EducationSynchronizationDataProvider.php │ │ │ ├── EducationSynchronizationError.php │ │ │ ├── EducationSynchronizationLicenseAssignment.php │ │ │ ├── EducationSynchronizationOAuth1ConnectionSettings.php │ │ │ ├── EducationSynchronizationOAuth2ClientCredentialsConnectionSettings.php │ │ │ ├── EducationSynchronizationProfile.php │ │ │ ├── EducationSynchronizationProfileState.php │ │ │ ├── EducationSynchronizationProfileStatus.php │ │ │ ├── EducationSynchronizationStatus.php │ │ │ ├── EducationTeacher.php │ │ │ ├── EducationTeamsAppResource.php │ │ │ ├── EducationTerm.php │ │ │ ├── EducationUser.php │ │ │ ├── EducationUserRole.php │ │ │ ├── EducationWordResource.php │ │ │ ├── EducationalActivity.php │ │ │ ├── EducationalActivityDetail.php │ │ │ ├── EligibilityFilteringEnabledEntities.php │ │ │ ├── EligibilityScheduleFilterByCurrentUserOptions.php │ │ │ ├── EligibilityScheduleInstanceFilterByCurrentUserOptions.php │ │ │ ├── EligibilityScheduleRequestFilterByCurrentUserOptions.php │ │ │ ├── EmailActivityStatistics.php │ │ │ ├── EmailAddress.php │ │ │ ├── EmailAuthenticationMethod.php │ │ │ ├── EmailAuthenticationMethodConfiguration.php │ │ │ ├── EmailCertificateType.php │ │ │ ├── EmailFileAssessmentRequest.php │ │ │ ├── EmailIdentity.php │ │ │ ├── EmailPayloadDetail.php │ │ │ ├── EmailRole.php │ │ │ ├── EmailSettings.php │ │ │ ├── EmailSyncDuration.php │ │ │ ├── EmailSyncSchedule.php │ │ │ ├── EmailType.php │ │ │ ├── EmbeddedSIMActivationCode.php │ │ │ ├── EmbeddedSIMActivationCodePool.php │ │ │ ├── EmbeddedSIMActivationCodePoolAssignment.php │ │ │ ├── EmbeddedSIMDeviceState.php │ │ │ ├── EmbeddedSIMDeviceStateValue.php │ │ │ ├── Employee.php │ │ │ ├── EmployeeExperience.php │ │ │ ├── EmployeeExperienceUser.php │ │ │ ├── EmployeeOrgData.php │ │ │ ├── Enablement.php │ │ │ ├── EncryptContent.php │ │ │ ├── EncryptWith.php │ │ │ ├── EncryptWithTemplate.php │ │ │ ├── EncryptWithUserDefinedRights.php │ │ │ ├── EncryptionReadinessState.php │ │ │ ├── EncryptionReportPolicyDetails.php │ │ │ ├── EncryptionState.php │ │ │ ├── Endpoint.php │ │ │ ├── EndpointSecurityConfigurationApplicablePlatform.php │ │ │ ├── EndpointSecurityConfigurationProfileType.php │ │ │ ├── EndpointSecurityConfigurationType.php │ │ │ ├── EndpointType.php │ │ │ ├── EnrollmentAvailabilityOptions.php │ │ │ ├── EnrollmentConfigurationAssignment.php │ │ │ ├── EnrollmentNotificationBrandingOptions.php │ │ │ ├── EnrollmentNotificationTemplateType.php │ │ │ ├── EnrollmentProfile.php │ │ │ ├── EnrollmentRestrictionPlatformType.php │ │ │ ├── EnrollmentRestrictionsConfigurationPolicySetItem.php │ │ │ ├── EnrollmentState.php │ │ │ ├── EnrollmentTroubleshootingEvent.php │ │ │ ├── EnterpriseCodeSigningCertificate.php │ │ │ ├── EntitlementManagement.php │ │ │ ├── EntitlementManagementSettings.php │ │ │ ├── Entity.php │ │ │ ├── EntitySetNames.php │ │ │ ├── EntityType.php │ │ │ ├── EntryExportStatus.php │ │ │ ├── EntrySyncOperation.php │ │ │ ├── ErrorCode.php │ │ │ ├── EvaluateDynamicMembershipResult.php │ │ │ ├── EvaluateLabelJobResponse.php │ │ │ ├── EvaluateLabelJobResult.php │ │ │ ├── EvaluateLabelJobResultGroup.php │ │ │ ├── EvaluateSensitivityLabelsRequest.php │ │ │ ├── Event.php │ │ │ ├── EventMessage.php │ │ │ ├── EventMessageDetail.php │ │ │ ├── EventMessageRequest.php │ │ │ ├── EventMessageResponse.php │ │ │ ├── EventType.php │ │ │ ├── ExactDataMatchStoreColumn.php │ │ │ ├── ExactMatchClassificationRequest.php │ │ │ ├── ExactMatchClassificationResult.php │ │ │ ├── ExactMatchDataStore.php │ │ │ ├── ExactMatchDataStoreBase.php │ │ │ ├── ExactMatchDetectedSensitiveContent.php │ │ │ ├── ExactMatchJobBase.php │ │ │ ├── ExactMatchLookupJob.php │ │ │ ├── ExactMatchSession.php │ │ │ ├── ExactMatchSessionBase.php │ │ │ ├── ExactMatchUploadAgent.php │ │ │ ├── ExchangeIdFormat.php │ │ │ ├── ExcludeTarget.php │ │ │ ├── ExcludedApps.php │ │ │ ├── ExclusionGroupAssignmentTarget.php │ │ │ ├── ExpeditedWindowsQualityUpdateSettings.php │ │ │ ├── ExpirationPattern.php │ │ │ ├── ExpirationPatternType.php │ │ │ ├── ExpirationRequirement.php │ │ │ ├── ExpressionEvaluationDetails.php │ │ │ ├── ExpressionInputObject.php │ │ │ ├── ExtendRemoteHelpSessionResponse.php │ │ │ ├── ExtendedKeyUsage.php │ │ │ ├── Extension.php │ │ │ ├── ExtensionProperty.php │ │ │ ├── ExtensionSchemaProperty.php │ │ │ ├── External.php │ │ │ ├── ExternalAudienceScope.php │ │ │ ├── ExternalAuthenticationType.php │ │ │ ├── ExternalConnection.php │ │ │ ├── ExternalDomainFederation.php │ │ │ ├── ExternalDomainName.php │ │ │ ├── ExternalEmailOtpState.php │ │ │ ├── ExternalGroup.php │ │ │ ├── ExternalIdentitiesPolicy.php │ │ │ ├── ExternalItem.php │ │ │ ├── ExternalItemContent.php │ │ │ ├── ExternalItemContentType.php │ │ │ ├── ExternalLink.php │ │ │ ├── ExternalMeetingRegistrant.php │ │ │ ├── ExternalMeetingRegistration.php │ │ │ ├── ExternalSponsors.php │ │ │ ├── ExtractSensitivityLabelsResult.php │ │ │ ├── FeatureRolloutPolicy.php │ │ │ ├── FeatureTarget.php │ │ │ ├── FeatureTargetType.php │ │ │ ├── FeatureType.php │ │ │ ├── FederatedIdentityCredential.php │ │ │ ├── FederatedIdpMfaBehavior.php │ │ │ ├── Fido2AuthenticationMethod.php │ │ │ ├── Fido2AuthenticationMethodConfiguration.php │ │ │ ├── Fido2CombinationConfiguration.php │ │ │ ├── Fido2KeyRestrictions.php │ │ │ ├── Fido2RestrictionEnforcementType.php │ │ │ ├── FieldValueSet.php │ │ │ ├── File.php │ │ │ ├── FileAssessmentRequest.php │ │ │ ├── FileAttachment.php │ │ │ ├── FileClassificationRequest.php │ │ │ ├── FileContentProperties.php │ │ │ ├── FileEncryptionInfo.php │ │ │ ├── FileHash.php │ │ │ ├── FileHashType.php │ │ │ ├── FileSecurityProfile.php │ │ │ ├── FileSecurityState.php │ │ │ ├── FileSystemInfo.php │ │ │ ├── FileVaultState.php │ │ │ ├── Filter.php │ │ │ ├── FilterClause.php │ │ │ ├── FilterGroup.php │ │ │ ├── FilterMode.php │ │ │ ├── FilterOperand.php │ │ │ ├── FilterOperatorSchema.php │ │ │ ├── Financials.php │ │ │ ├── FirewallCertificateRevocationListCheckMethodType.php │ │ │ ├── FirewallPacketQueueingMethodType.php │ │ │ ├── FirewallPreSharedKeyEncodingMethodType.php │ │ │ ├── FlexSchemaContainer.php │ │ │ ├── FocusActivityStatistics.php │ │ │ ├── Folder.php │ │ │ ├── FolderProtectionType.php │ │ │ ├── FolderView.php │ │ │ ├── FollowupFlag.php │ │ │ ├── FollowupFlagStatus.php │ │ │ ├── FreeBusyError.php │ │ │ ├── FreeBusyStatus.php │ │ │ ├── GeneralLedgerEntry.php │ │ │ ├── GenericError.php │ │ │ ├── GeoCoordinates.php │ │ │ ├── GeolocationColumn.php │ │ │ ├── GiphyRatingType.php │ │ │ ├── GlobalDeviceHealthScriptState.php │ │ │ ├── GovernanceCriteria.php │ │ │ ├── GovernanceInsight.php │ │ │ ├── GovernanceNotificationPolicy.php │ │ │ ├── GovernanceNotificationTemplate.php │ │ │ ├── GovernancePermission.php │ │ │ ├── GovernancePolicy.php │ │ │ ├── GovernancePolicyTemplate.php │ │ │ ├── GovernanceResource.php │ │ │ ├── GovernanceRoleAssignment.php │ │ │ ├── GovernanceRoleAssignmentRequest.php │ │ │ ├── GovernanceRoleAssignmentRequestStatus.php │ │ │ ├── GovernanceRoleDefinition.php │ │ │ ├── GovernanceRoleSetting.php │ │ │ ├── GovernanceRuleSetting.php │ │ │ ├── GovernanceSchedule.php │ │ │ ├── GovernanceSubject.php │ │ │ ├── GraphList.php │ │ │ ├── GraphPrint.php │ │ │ ├── Group.php │ │ │ ├── GroupAccessType.php │ │ │ ├── GroupAssignmentTarget.php │ │ │ ├── GroupFilter.php │ │ │ ├── GroupLifecyclePolicy.php │ │ │ ├── GroupMembers.php │ │ │ ├── GroupMembershipGovernanceCriteria.php │ │ │ ├── GroupPeerOutlierRecommendationInsightSettings.php │ │ │ ├── GroupPolicyCategory.php │ │ │ ├── GroupPolicyConfiguration.php │ │ │ ├── GroupPolicyConfigurationAssignment.php │ │ │ ├── GroupPolicyConfigurationIngestionType.php │ │ │ ├── GroupPolicyConfigurationType.php │ │ │ ├── GroupPolicyDefinition.php │ │ │ ├── GroupPolicyDefinitionClassType.php │ │ │ ├── GroupPolicyDefinitionFile.php │ │ │ ├── GroupPolicyDefinitionValue.php │ │ │ ├── GroupPolicyMigrationReadiness.php │ │ │ ├── GroupPolicyMigrationReport.php │ │ │ ├── GroupPolicyObjectFile.php │ │ │ ├── GroupPolicyOperation.php │ │ │ ├── GroupPolicyOperationStatus.php │ │ │ ├── GroupPolicyOperationType.php │ │ │ ├── GroupPolicyPresentation.php │ │ │ ├── GroupPolicyPresentationCheckBox.php │ │ │ ├── GroupPolicyPresentationComboBox.php │ │ │ ├── GroupPolicyPresentationDecimalTextBox.php │ │ │ ├── GroupPolicyPresentationDropdownList.php │ │ │ ├── GroupPolicyPresentationDropdownListItem.php │ │ │ ├── GroupPolicyPresentationListBox.php │ │ │ ├── GroupPolicyPresentationLongDecimalTextBox.php │ │ │ ├── GroupPolicyPresentationMultiTextBox.php │ │ │ ├── GroupPolicyPresentationText.php │ │ │ ├── GroupPolicyPresentationTextBox.php │ │ │ ├── GroupPolicyPresentationValue.php │ │ │ ├── GroupPolicyPresentationValueBoolean.php │ │ │ ├── GroupPolicyPresentationValueDecimal.php │ │ │ ├── GroupPolicyPresentationValueList.php │ │ │ ├── GroupPolicyPresentationValueLongDecimal.php │ │ │ ├── GroupPolicyPresentationValueMultiText.php │ │ │ ├── GroupPolicyPresentationValueText.php │ │ │ ├── GroupPolicySettingMapping.php │ │ │ ├── GroupPolicySettingScope.php │ │ │ ├── GroupPolicySettingType.php │ │ │ ├── GroupPolicyType.php │ │ │ ├── GroupPolicyUploadedDefinitionFile.php │ │ │ ├── GroupPolicyUploadedDefinitionFileStatus.php │ │ │ ├── GroupPolicyUploadedLanguageFile.php │ │ │ ├── GroupPolicyUploadedPresentation.php │ │ │ ├── GroupPrintUsageSummary.php │ │ │ ├── GroupPrivacy.php │ │ │ ├── GroupType.php │ │ │ ├── GroupWritebackConfiguration.php │ │ │ ├── HardwareInformation.php │ │ │ ├── HasPayloadLinkResultItem.php │ │ │ ├── HashAlgorithms.php │ │ │ ├── Hashes.php │ │ │ ├── HealthState.php │ │ │ ├── HomeRealmDiscoveryPolicy.php │ │ │ ├── HorizontalSection.php │ │ │ ├── HorizontalSectionColumn.php │ │ │ ├── HorizontalSectionLayoutType.php │ │ │ ├── HostSecurityProfile.php │ │ │ ├── HostSecurityState.php │ │ │ ├── HttpRequestEndpoint.php │ │ │ ├── HybridAgentUpdaterConfiguration.php │ │ │ ├── HyperlinkOrPictureColumn.php │ │ │ ├── IPv4CidrRange.php │ │ │ ├── IPv4Range.php │ │ │ ├── IPv6CidrRange.php │ │ │ ├── IPv6Range.php │ │ │ ├── ITunesPairingMode.php │ │ │ ├── Identity.php │ │ │ ├── IdentityApiConnector.php │ │ │ ├── IdentityBuiltInUserFlowAttribute.php │ │ │ ├── IdentityContainer.php │ │ │ ├── IdentityCustomUserFlowAttribute.php │ │ │ ├── IdentityGovernance.php │ │ │ ├── IdentityProtectionRoot.php │ │ │ ├── IdentityProvider.php │ │ │ ├── IdentityProviderBase.php │ │ │ ├── IdentityProviderState.php │ │ │ ├── IdentitySecurityDefaultsEnforcementPolicy.php │ │ │ ├── IdentitySet.php │ │ │ ├── IdentitySource.php │ │ │ ├── IdentitySourceType.php │ │ │ ├── IdentityUserFlow.php │ │ │ ├── IdentityUserFlowAttribute.php │ │ │ ├── IdentityUserFlowAttributeAssignment.php │ │ │ ├── IdentityUserFlowAttributeDataType.php │ │ │ ├── IdentityUserFlowAttributeInputType.php │ │ │ ├── IdentityUserFlowAttributeType.php │ │ │ ├── IdleSessionSignOut.php │ │ │ ├── Image.php │ │ │ ├── ImageInfo.php │ │ │ ├── ImageTaggingChoice.php │ │ │ ├── ImpactedResource.php │ │ │ ├── ImplicitGrantSettings.php │ │ │ ├── Importance.php │ │ │ ├── ImportedAppleDeviceIdentity.php │ │ │ ├── ImportedAppleDeviceIdentityResult.php │ │ │ ├── ImportedDeviceIdentity.php │ │ │ ├── ImportedDeviceIdentityResult.php │ │ │ ├── ImportedDeviceIdentityType.php │ │ │ ├── ImportedWindowsAutopilotDeviceIdentity.php │ │ │ ├── ImportedWindowsAutopilotDeviceIdentityImportStatus.php │ │ │ ├── ImportedWindowsAutopilotDeviceIdentityState.php │ │ │ ├── ImportedWindowsAutopilotDeviceIdentityUpload.php │ │ │ ├── ImportedWindowsAutopilotDeviceIdentityUploadStatus.php │ │ │ ├── InboundOutboundPolicyConfiguration.php │ │ │ ├── InboundSharedUserProfile.php │ │ │ ├── IncludeAllAccountTargetContent.php │ │ │ ├── IncludeTarget.php │ │ │ ├── IncludedUserRoles.php │ │ │ ├── IncludedUserTypes.php │ │ │ ├── IncomingCallOptions.php │ │ │ ├── IncomingContext.php │ │ │ ├── IncomingTokenType.php │ │ │ ├── IncompleteData.php │ │ │ ├── InferenceClassification.php │ │ │ ├── InferenceClassificationOverride.php │ │ │ ├── InferenceClassificationType.php │ │ │ ├── InferenceData.php │ │ │ ├── InformationProtection.php │ │ │ ├── InformationProtectionAction.php │ │ │ ├── InformationProtectionContentLabel.php │ │ │ ├── InformationProtectionLabel.php │ │ │ ├── InformationProtectionPolicy.php │ │ │ ├── InformationalUrl.php │ │ │ ├── InformationalUrls.php │ │ │ ├── IngestionSource.php │ │ │ ├── Initiator.php │ │ │ ├── InitiatorType.php │ │ │ ├── InkAccessSetting.php │ │ │ ├── InsightIdentity.php │ │ │ ├── InsightValueDouble.php │ │ │ ├── InsightValueInt.php │ │ │ ├── InsightsSettings.php │ │ │ ├── InstallIntent.php │ │ │ ├── InstallState.php │ │ │ ├── InstanceResourceAccess.php │ │ │ ├── InstitutionData.php │ │ │ ├── IntegerRange.php │ │ │ ├── IntendedPurpose.php │ │ │ ├── InternalDomainFederation.php │ │ │ ├── InternalSponsors.php │ │ │ ├── InternetExplorerMessageSetting.php │ │ │ ├── InternetExplorerMode.php │ │ │ ├── InternetMessageHeader.php │ │ │ ├── InternetSiteSecurityLevel.php │ │ │ ├── IntuneBrand.php │ │ │ ├── IntuneBrandingProfile.php │ │ │ ├── IntuneBrandingProfileAssignment.php │ │ │ ├── InvalidLicenseAlertConfiguration.php │ │ │ ├── InvalidLicenseAlertIncident.php │ │ │ ├── InvestigationSecurityState.php │ │ │ ├── Invitation.php │ │ │ ├── InvitationParticipantInfo.php │ │ │ ├── InviteNewBotResponse.php │ │ │ ├── InviteParticipantsOperation.php │ │ │ ├── InvitedUserMessageInfo.php │ │ │ ├── InvokeUserFlowListener.php │ │ │ ├── IosAvailableUpdateVersion.php │ │ │ ├── IosAzureAdSingleSignOnExtension.php │ │ │ ├── IosBookmark.php │ │ │ ├── IosCertificateProfile.php │ │ │ ├── IosCertificateProfileBase.php │ │ │ ├── IosCompliancePolicy.php │ │ │ ├── IosCredentialSingleSignOnExtension.php │ │ │ ├── IosCustomConfiguration.php │ │ │ ├── IosDerivedCredentialAuthenticationConfiguration.php │ │ │ ├── IosDeviceFeaturesConfiguration.php │ │ │ ├── IosDeviceType.php │ │ │ ├── IosEasEmailProfileConfiguration.php │ │ │ ├── IosEduCertificateSettings.php │ │ │ ├── IosEduDeviceConfiguration.php │ │ │ ├── IosEducationDeviceConfiguration.php │ │ │ ├── IosEnterpriseWiFiConfiguration.php │ │ │ ├── IosExpeditedCheckinConfiguration.php │ │ │ ├── IosGeneralDeviceConfiguration.php │ │ │ ├── IosHomeScreenApp.php │ │ │ ├── IosHomeScreenFolder.php │ │ │ ├── IosHomeScreenFolderPage.php │ │ │ ├── IosHomeScreenItem.php │ │ │ ├── IosHomeScreenPage.php │ │ │ ├── IosImportedPFXCertificateProfile.php │ │ │ ├── IosKerberosSingleSignOnExtension.php │ │ │ ├── IosKioskModeAppType.php │ │ │ ├── IosLobApp.php │ │ │ ├── IosLobAppAssignmentSettings.php │ │ │ ├── IosLobAppProvisioningConfiguration.php │ │ │ ├── IosLobAppProvisioningConfigurationAssignment.php │ │ │ ├── IosLobAppProvisioningConfigurationPolicySetItem.php │ │ │ ├── IosManagedAppProtection.php │ │ │ ├── IosManagedAppRegistration.php │ │ │ ├── IosMinimumOperatingSystem.php │ │ │ ├── IosMobileAppConfiguration.php │ │ │ ├── IosMobileAppIdentifier.php │ │ │ ├── IosNetworkUsageRule.php │ │ │ ├── IosNotificationAlertType.php │ │ │ ├── IosNotificationPreviewVisibility.php │ │ │ ├── IosNotificationSettings.php │ │ │ ├── IosPkcsCertificateProfile.php │ │ │ ├── IosRedirectSingleSignOnExtension.php │ │ │ ├── IosScepCertificateProfile.php │ │ │ ├── IosSingleSignOnExtension.php │ │ │ ├── IosSingleSignOnSettings.php │ │ │ ├── IosSoftwareUpdateScheduleType.php │ │ │ ├── IosStoreApp.php │ │ │ ├── IosStoreAppAssignmentSettings.php │ │ │ ├── IosTrustedRootCertificate.php │ │ │ ├── IosUpdateConfiguration.php │ │ │ ├── IosUpdateDeviceStatus.php │ │ │ ├── IosUpdatesInstallStatus.php │ │ │ ├── IosVpnConfiguration.php │ │ │ ├── IosVpnSecurityAssociationParameters.php │ │ │ ├── IosVppApp.php │ │ │ ├── IosVppAppAssignedDeviceLicense.php │ │ │ ├── IosVppAppAssignedLicense.php │ │ │ ├── IosVppAppAssignedUserLicense.php │ │ │ ├── IosVppAppAssignmentSettings.php │ │ │ ├── IosVppAppRevokeLicensesActionResult.php │ │ │ ├── IosVppEBook.php │ │ │ ├── IosVppEBookAssignment.php │ │ │ ├── IosWallpaperDisplayLocation.php │ │ │ ├── IosWebContentFilterAutoFilter.php │ │ │ ├── IosWebContentFilterBase.php │ │ │ ├── IosWebContentFilterSpecificWebsitesAccess.php │ │ │ ├── IosWiFiConfiguration.php │ │ │ ├── IosiPadOSWebClip.php │ │ │ ├── IosikEv2VpnConfiguration.php │ │ │ ├── IpApplicationSegment.php │ │ │ ├── IpCategory.php │ │ │ ├── IpNamedLocation.php │ │ │ ├── IpRange.php │ │ │ ├── IpReferenceData.php │ │ │ ├── IpSecurityProfile.php │ │ │ ├── IpSegmentConfiguration.php │ │ │ ├── Item.php │ │ │ ├── ItemActionSet.php │ │ │ ├── ItemActionStat.php │ │ │ ├── ItemActivity.php │ │ │ ├── ItemActivityOLD.php │ │ │ ├── ItemActivityStat.php │ │ │ ├── ItemActivityTimeSet.php │ │ │ ├── ItemAddress.php │ │ │ ├── ItemAnalytics.php │ │ │ ├── ItemAttachment.php │ │ │ ├── ItemBody.php │ │ │ ├── ItemCategory.php │ │ │ ├── ItemEmail.php │ │ │ ├── ItemFacet.php │ │ │ ├── ItemInsights.php │ │ │ ├── ItemPatent.php │ │ │ ├── ItemPhone.php │ │ │ ├── ItemPreviewInfo.php │ │ │ ├── ItemPublication.php │ │ │ ├── ItemReference.php │ │ │ ├── ItemRetentionLabel.php │ │ │ ├── JobHistorySummaryType.php │ │ │ ├── JobResponseBase.php │ │ │ ├── JoinMeetingIdMeetingInfo.php │ │ │ ├── JoinMeetingIdSettings.php │ │ │ ├── JoinType.php │ │ │ ├── Journal.php │ │ │ ├── JournalLine.php │ │ │ ├── JustInTimeEnforcementConfiguration.php │ │ │ ├── JustifyAction.php │ │ │ ├── KerberosSignOnMappingAttributeType.php │ │ │ ├── KerberosSignOnSettings.php │ │ │ ├── KerberosSingleSignOnExtension.php │ │ │ ├── KeyBooleanValuePair.php │ │ │ ├── KeyCredential.php │ │ │ ├── KeyCredentialConfiguration.php │ │ │ ├── KeyIntegerValuePair.php │ │ │ ├── KeyLongValuePair.php │ │ │ ├── KeyRealValuePair.php │ │ │ ├── KeySize.php │ │ │ ├── KeyStorageProviderOption.php │ │ │ ├── KeyStringValuePair.php │ │ │ ├── KeyTypedValuePair.php │ │ │ ├── KeyUsages.php │ │ │ ├── KeyValue.php │ │ │ ├── KeyValuePair.php │ │ │ ├── KioskModeManagedHomeScreenPinComplexity.php │ │ │ ├── KioskModeType.php │ │ │ ├── Label.php │ │ │ ├── LabelActionBase.php │ │ │ ├── LabelDetails.php │ │ │ ├── LabelPolicy.php │ │ │ ├── LabelingOptions.php │ │ │ ├── LanManagerAuthenticationLevel.php │ │ │ ├── LanguageProficiency.php │ │ │ ├── LanguageProficiencyLevel.php │ │ │ ├── LayoutTemplateType.php │ │ │ ├── LearningAssignment.php │ │ │ ├── LearningContent.php │ │ │ ├── LearningCourseActivity.php │ │ │ ├── LearningProvider.php │ │ │ ├── LearningSelfInitiatedCourse.php │ │ │ ├── LicenseAssignmentState.php │ │ │ ├── LicenseDetails.php │ │ │ ├── LicenseProcessingState.php │ │ │ ├── LicenseType.php │ │ │ ├── LicenseUnitsDetail.php │ │ │ ├── LifecycleEventType.php │ │ │ ├── LinkedResource.php │ │ │ ├── ListInfo.php │ │ │ ├── ListItem.php │ │ │ ├── ListItemVersion.php │ │ │ ├── LobbyBypassScope.php │ │ │ ├── LobbyBypassSettings.php │ │ │ ├── LocalAdminPasswordSettings.php │ │ │ ├── LocalSecurityOptionsAdministratorElevationPromptBehaviorType.php │ │ │ ├── LocalSecurityOptionsFormatAndEjectOfRemovableMediaAllowedUserType.php │ │ │ ├── LocalSecurityOptionsInformationDisplayedOnLockScreenType.php │ │ │ ├── LocalSecurityOptionsInformationShownOnLockScreenType.php │ │ │ ├── LocalSecurityOptionsMinimumSessionSecurity.php │ │ │ ├── LocalSecurityOptionsSmartCardRemovalBehaviorType.php │ │ │ ├── LocalSecurityOptionsStandardUserElevationPromptBehaviorType.php │ │ │ ├── LocaleInfo.php │ │ │ ├── LocalizedNotificationMessage.php │ │ │ ├── LocateDeviceActionResult.php │ │ │ ├── Location.php │ │ │ ├── LocationConstraint.php │ │ │ ├── LocationConstraintItem.php │ │ │ ├── LocationType.php │ │ │ ├── LocationUniqueIdType.php │ │ │ ├── LoggedOnUser.php │ │ │ ├── LogicAppTriggerEndpointConfiguration.php │ │ │ ├── LoginPageLayoutConfiguration.php │ │ │ ├── LoginPageTextVisibilitySettings.php │ │ │ ├── LogonType.php │ │ │ ├── LogonUser.php │ │ │ ├── LongRunningOperation.php │ │ │ ├── LongRunningOperationStatus.php │ │ │ ├── LookupColumn.php │ │ │ ├── LookupResultRow.php │ │ │ ├── LostModeState.php │ │ │ ├── MacAppIdentifier.php │ │ │ ├── MacOSAppleEventReceiver.php │ │ │ ├── MacOSAssociatedDomainsItem.php │ │ │ ├── MacOSAzureAdSingleSignOnExtension.php │ │ │ ├── MacOSCertificateProfileBase.php │ │ │ ├── MacOSCompliancePolicy.php │ │ │ ├── MacOSContentCachingClientPolicy.php │ │ │ ├── MacOSContentCachingParentSelectionPolicy.php │ │ │ ├── MacOSContentCachingPeerPolicy.php │ │ │ ├── MacOSContentCachingType.php │ │ │ ├── MacOSCredentialSingleSignOnExtension.php │ │ │ ├── MacOSCustomAppConfiguration.php │ │ │ ├── MacOSCustomConfiguration.php │ │ │ ├── MacOSDeviceFeaturesConfiguration.php │ │ │ ├── MacOSDmgApp.php │ │ │ ├── MacOSEndpointProtectionConfiguration.php │ │ │ ├── MacOSEnterpriseWiFiConfiguration.php │ │ │ ├── MacOSExtensionsConfiguration.php │ │ │ ├── MacOSFileVaultRecoveryKeyTypes.php │ │ │ ├── MacOSFirewallApplication.php │ │ │ ├── MacOSGatekeeperAppSources.php │ │ │ ├── MacOSGeneralDeviceConfiguration.php │ │ │ ├── MacOSImportedPFXCertificateProfile.php │ │ │ ├── MacOSIncludedApp.php │ │ │ ├── MacOSKerberosSingleSignOnExtension.php │ │ │ ├── MacOSKernelExtension.php │ │ │ ├── MacOSLaunchItem.php │ │ │ ├── MacOSLobApp.php │ │ │ ├── MacOSLobChildApp.php │ │ │ ├── MacOSMdatpApp.php │ │ │ ├── MacOSMicrosoftDefenderApp.php │ │ │ ├── MacOSMicrosoftEdgeApp.php │ │ │ ├── MacOSMinimumOperatingSystem.php │ │ │ ├── MacOSOfficeSuiteApp.php │ │ │ ├── MacOSPkcsCertificateProfile.php │ │ │ ├── MacOSPriority.php │ │ │ ├── MacOSPrivacyAccessControlItem.php │ │ │ ├── MacOSProcessIdentifierType.php │ │ │ ├── MacOSRedirectSingleSignOnExtension.php │ │ │ ├── MacOSScepCertificateProfile.php │ │ │ ├── MacOSSingleSignOnExtension.php │ │ │ ├── MacOSSoftwareUpdateAccountSummary.php │ │ │ ├── MacOSSoftwareUpdateBehavior.php │ │ │ ├── MacOSSoftwareUpdateCategory.php │ │ │ ├── MacOSSoftwareUpdateCategorySummary.php │ │ │ ├── MacOSSoftwareUpdateConfiguration.php │ │ │ ├── MacOSSoftwareUpdateDelayPolicy.php │ │ │ ├── MacOSSoftwareUpdateScheduleType.php │ │ │ ├── MacOSSoftwareUpdateState.php │ │ │ ├── MacOSSoftwareUpdateStateSummary.php │ │ │ ├── MacOSSystemExtension.php │ │ │ ├── MacOSSystemExtensionType.php │ │ │ ├── MacOSSystemExtensionTypeMapping.php │ │ │ ├── MacOSTrustedRootCertificate.php │ │ │ ├── MacOSVpnConfiguration.php │ │ │ ├── MacOSWiFiConfiguration.php │ │ │ ├── MacOSWiredNetworkConfiguration.php │ │ │ ├── MacOsLobAppAssignmentSettings.php │ │ │ ├── MacOsVppApp.php │ │ │ ├── MacOsVppAppAssignedLicense.php │ │ │ ├── MacOsVppAppAssignmentSettings.php │ │ │ ├── MacOsVppAppRevokeLicensesActionResult.php │ │ │ ├── MachineLearningDetectedSensitiveContent.php │ │ │ ├── MailAssessmentRequest.php │ │ │ ├── MailDestinationRoutingReason.php │ │ │ ├── MailFolder.php │ │ │ ├── MailSearchFolder.php │ │ │ ├── MailTips.php │ │ │ ├── MailTipsError.php │ │ │ ├── MailTipsType.php │ │ │ ├── MailboxRecipientType.php │ │ │ ├── MailboxSettings.php │ │ │ ├── Malware.php │ │ │ ├── MalwareState.php │ │ │ ├── MalwareStateForWindowsDevice.php │ │ │ ├── ManagedAllDeviceCertificateState.php │ │ │ ├── ManagedAndroidLobApp.php │ │ │ ├── ManagedAndroidStoreApp.php │ │ │ ├── ManagedApp.php │ │ │ ├── ManagedAppAvailability.php │ │ │ ├── ManagedAppClipboardSharingLevel.php │ │ │ ├── ManagedAppConfiguration.php │ │ │ ├── ManagedAppDataEncryptionType.php │ │ │ ├── ManagedAppDataIngestionLocation.php │ │ │ ├── ManagedAppDataStorageLocation.php │ │ │ ├── ManagedAppDataTransferLevel.php │ │ │ ├── ManagedAppDeviceThreatLevel.php │ │ │ ├── ManagedAppDiagnosticStatus.php │ │ │ ├── ManagedAppFlaggedReason.php │ │ │ ├── ManagedAppNotificationRestriction.php │ │ │ ├── ManagedAppOperation.php │ │ │ ├── ManagedAppPhoneNumberRedirectLevel.php │ │ │ ├── ManagedAppPinCharacterSet.php │ │ │ ├── ManagedAppPolicy.php │ │ │ ├── ManagedAppPolicyDeploymentSummary.php │ │ │ ├── ManagedAppPolicyDeploymentSummaryPerApp.php │ │ │ ├── ManagedAppProtection.php │ │ │ ├── ManagedAppProtectionPolicySetItem.php │ │ │ ├── ManagedAppRegistration.php │ │ │ ├── ManagedAppRemediationAction.php │ │ │ ├── ManagedAppStatus.php │ │ │ ├── ManagedAppStatusRaw.php │ │ │ ├── ManagedBrowserType.php │ │ │ ├── ManagedDevice.php │ │ │ ├── ManagedDeviceArchitecture.php │ │ │ ├── ManagedDeviceCertificateState.php │ │ │ ├── ManagedDeviceCleanupSettings.php │ │ │ ├── ManagedDeviceEncryptionState.php │ │ │ ├── ManagedDeviceManagementFeatures.php │ │ │ ├── ManagedDeviceMobileAppConfiguration.php │ │ │ ├── ManagedDeviceMobileAppConfigurationAssignment.php │ │ │ ├── ManagedDeviceMobileAppConfigurationDeviceStatus.php │ │ │ ├── ManagedDeviceMobileAppConfigurationDeviceSummary.php │ │ │ ├── ManagedDeviceMobileAppConfigurationPolicySetItem.php │ │ │ ├── ManagedDeviceMobileAppConfigurationSettingState.php │ │ │ ├── ManagedDeviceMobileAppConfigurationState.php │ │ │ ├── ManagedDeviceMobileAppConfigurationUserStatus.php │ │ │ ├── ManagedDeviceMobileAppConfigurationUserSummary.php │ │ │ ├── ManagedDeviceModelsAndManufacturers.php │ │ │ ├── ManagedDeviceOverview.php │ │ │ ├── ManagedDeviceOwnerType.php │ │ │ ├── ManagedDevicePartnerReportedHealthState.php │ │ │ ├── ManagedDeviceRemoteAction.php │ │ │ ├── ManagedDeviceReportedApp.php │ │ │ ├── ManagedDeviceSummarizedAppState.php │ │ │ ├── ManagedEBook.php │ │ │ ├── ManagedEBookAssignment.php │ │ │ ├── ManagedEBookCategory.php │ │ │ ├── ManagedIOSLobApp.php │ │ │ ├── ManagedIOSStoreApp.php │ │ │ ├── ManagedIdentity.php │ │ │ ├── ManagedInstallerStatus.php │ │ │ ├── ManagedMobileApp.php │ │ │ ├── ManagedMobileLobApp.php │ │ │ ├── ManagementAgentType.php │ │ │ ├── ManagementCertificateWithThumbprint.php │ │ │ ├── ManagementState.php │ │ │ ├── MarkContent.php │ │ │ ├── MatchLocation.php │ │ │ ├── MatchedCondition.php │ │ │ ├── MatchingDlpRule.php │ │ │ ├── MatchingLabel.php │ │ │ ├── MdmAppConfigKeyType.php │ │ │ ├── MdmAuthority.php │ │ │ ├── MdmSupportedState.php │ │ │ ├── MdmWindowsInformationProtectionPolicy.php │ │ │ ├── MdmWindowsInformationProtectionPolicyPolicySetItem.php │ │ │ ├── Media.php │ │ │ ├── MediaConfig.php │ │ │ ├── MediaContentRatingAustralia.php │ │ │ ├── MediaContentRatingCanada.php │ │ │ ├── MediaContentRatingFrance.php │ │ │ ├── MediaContentRatingGermany.php │ │ │ ├── MediaContentRatingIreland.php │ │ │ ├── MediaContentRatingJapan.php │ │ │ ├── MediaContentRatingNewZealand.php │ │ │ ├── MediaContentRatingUnitedKingdom.php │ │ │ ├── MediaContentRatingUnitedStates.php │ │ │ ├── MediaDirection.php │ │ │ ├── MediaInfo.php │ │ │ ├── MediaPrompt.php │ │ │ ├── MediaSource.php │ │ │ ├── MediaSourceContentCategory.php │ │ │ ├── MediaState.php │ │ │ ├── MediaStream.php │ │ │ ├── MeetingActivityStatistics.php │ │ │ ├── MeetingAttendanceReport.php │ │ │ ├── MeetingAudience.php │ │ │ ├── MeetingCapabilities.php │ │ │ ├── MeetingCapability.php │ │ │ ├── MeetingChatHistoryDefaultMode.php │ │ │ ├── MeetingChatMode.php │ │ │ ├── MeetingInfo.php │ │ │ ├── MeetingMessageType.php │ │ │ ├── MeetingParticipantInfo.php │ │ │ ├── MeetingParticipants.php │ │ │ ├── MeetingPolicyUpdatedEventMessageDetail.php │ │ │ ├── MeetingRegistrant.php │ │ │ ├── MeetingRegistrantBase.php │ │ │ ├── MeetingRegistrantStatus.php │ │ │ ├── MeetingRegistration.php │ │ │ ├── MeetingRegistrationBase.php │ │ │ ├── MeetingRegistrationQuestion.php │ │ │ ├── MeetingSpeaker.php │ │ │ ├── MeetingTimeSuggestion.php │ │ │ ├── MeetingTimeSuggestionsResult.php │ │ │ ├── MembersAddedEventMessageDetail.php │ │ │ ├── MembersDeletedEventMessageDetail.php │ │ │ ├── MembersJoinedEventMessageDetail.php │ │ │ ├── MembersLeftEventMessageDetail.php │ │ │ ├── MembershipOutlierInsight.php │ │ │ ├── MembershipRuleEvaluationDetails.php │ │ │ ├── MembershipRuleProcessingStatus.php │ │ │ ├── MembershipRuleProcessingStatusDetails.php │ │ │ ├── Mention.php │ │ │ ├── MentionAction.php │ │ │ ├── MentionsPreview.php │ │ │ ├── Message.php │ │ │ ├── MessageActionFlag.php │ │ │ ├── MessageEvent.php │ │ │ ├── MessageEventType.php │ │ │ ├── MessagePinnedEventMessageDetail.php │ │ │ ├── MessageRecipient.php │ │ │ ├── MessageRule.php │ │ │ ├── MessageRuleActions.php │ │ │ ├── MessageRulePredicates.php │ │ │ ├── MessageSecurityState.php │ │ │ ├── MessageStatus.php │ │ │ ├── MessageTrace.php │ │ │ ├── MessageUnpinnedEventMessageDetail.php │ │ │ ├── MetaDataKeyStringPair.php │ │ │ ├── MetaDataKeyValuePair.php │ │ │ ├── MetadataAction.php │ │ │ ├── MetadataEntry.php │ │ │ ├── MeteredConnectionLimitType.php │ │ │ ├── MetricTimeSeriesDataPoint.php │ │ │ ├── MfaDetail.php │ │ │ ├── MicrosoftAccountUserConversationMember.php │ │ │ ├── MicrosoftApplicationDataAccessSettings.php │ │ │ ├── MicrosoftAuthenticatorAuthenticationMethod.php │ │ │ ├── MicrosoftAuthenticatorAuthenticationMethodClientAppName.php │ │ │ ├── MicrosoftAuthenticatorAuthenticationMethodConfiguration.php │ │ │ ├── MicrosoftAuthenticatorAuthenticationMethodTarget.php │ │ │ ├── MicrosoftAuthenticatorAuthenticationMode.php │ │ │ ├── MicrosoftAuthenticatorFeatureSettings.php │ │ │ ├── MicrosoftEdgeChannel.php │ │ │ ├── MicrosoftLauncherDockPresence.php │ │ │ ├── MicrosoftLauncherSearchBarPlacement.php │ │ │ ├── MicrosoftManagedDesktop.php │ │ │ ├── MicrosoftManagedDesktopType.php │ │ │ ├── MicrosoftStoreForBusinessApp.php │ │ │ ├── MicrosoftStoreForBusinessAppAssignmentSettings.php │ │ │ ├── MicrosoftStoreForBusinessContainedApp.php │ │ │ ├── MicrosoftStoreForBusinessLicenseType.php │ │ │ ├── MicrosoftStoreForBusinessPortalSelectionOptions.php │ │ │ ├── MicrosoftTunnelConfiguration.php │ │ │ ├── MicrosoftTunnelHealthThreshold.php │ │ │ ├── MicrosoftTunnelLogCollectionStatus.php │ │ │ ├── MicrosoftTunnelServer.php │ │ │ ├── MicrosoftTunnelServerHealthStatus.php │ │ │ ├── MicrosoftTunnelServerLogCollectionResponse.php │ │ │ ├── MicrosoftTunnelSite.php │ │ │ ├── MigrationStatus.php │ │ │ ├── MimeContent.php │ │ │ ├── MiracastChannel.php │ │ │ ├── MlClassificationMatchTolerance.php │ │ │ ├── MobileApp.php │ │ │ ├── MobileAppActionType.php │ │ │ ├── MobileAppAssignment.php │ │ │ ├── MobileAppAssignmentSettings.php │ │ │ ├── MobileAppCategory.php │ │ │ ├── MobileAppContent.php │ │ │ ├── MobileAppContentFile.php │ │ │ ├── MobileAppContentFileUploadState.php │ │ │ ├── MobileAppDependency.php │ │ │ ├── MobileAppDependencyType.php │ │ │ ├── MobileAppIdentifier.php │ │ │ ├── MobileAppInstallStatus.php │ │ │ ├── MobileAppInstallSummary.php │ │ │ ├── MobileAppInstallTimeSettings.php │ │ │ ├── MobileAppIntent.php │ │ │ ├── MobileAppIntentAndState.php │ │ │ ├── MobileAppIntentAndStateDetail.php │ │ │ ├── MobileAppPolicySetItem.php │ │ │ ├── MobileAppProvisioningConfigGroupAssignment.php │ │ │ ├── MobileAppPublishingState.php │ │ │ ├── MobileAppRelationship.php │ │ │ ├── MobileAppRelationshipState.php │ │ │ ├── MobileAppRelationshipType.php │ │ │ ├── MobileAppSupersedence.php │ │ │ ├── MobileAppSupersedenceType.php │ │ │ ├── MobileAppSupportedDeviceType.php │ │ │ ├── MobileAppTroubleshootingAppPolicyCreationHistory.php │ │ │ ├── MobileAppTroubleshootingAppStateHistory.php │ │ │ ├── MobileAppTroubleshootingAppTargetHistory.php │ │ │ ├── MobileAppTroubleshootingAppUpdateHistory.php │ │ │ ├── MobileAppTroubleshootingDeviceCheckinHistory.php │ │ │ ├── MobileAppTroubleshootingEvent.php │ │ │ ├── MobileAppTroubleshootingHistoryItem.php │ │ │ ├── MobileContainedApp.php │ │ │ ├── MobileLobApp.php │ │ │ ├── MobileThreatDefenseConnector.php │ │ │ ├── MobileThreatDefensePartnerPriority.php │ │ │ ├── MobileThreatPartnerTenantState.php │ │ │ ├── MobilityManagementPolicy.php │ │ │ ├── Modality.php │ │ │ ├── ModifiedProperty.php │ │ │ ├── MoveAction.php │ │ │ ├── MsiType.php │ │ │ ├── MultiFactorAuthConfiguration.php │ │ │ ├── MultiValueLegacyExtendedProperty.php │ │ │ ├── Mutability.php │ │ │ ├── MuteParticipantOperation.php │ │ │ ├── MuteParticipantsOperation.php │ │ │ ├── NamedLocation.php │ │ │ ├── NdesConnector.php │ │ │ ├── NdesConnectorState.php │ │ │ ├── NetworkConnection.php │ │ │ ├── NetworkInterface.php │ │ │ ├── NetworkLocationDetail.php │ │ │ ├── NetworkSingleSignOnType.php │ │ │ ├── NetworkType.php │ │ │ ├── NoMfaOnRoleActivationAlertConfiguration.php │ │ │ ├── NoMfaOnRoleActivationAlertIncident.php │ │ │ ├── NonEapAuthenticationMethodForEapTtlsType.php │ │ │ ├── NonEapAuthenticationMethodForPeap.php │ │ │ ├── Note.php │ │ │ ├── Notebook.php │ │ │ ├── NotebookLinks.php │ │ │ ├── Notification.php │ │ │ ├── NotificationMessageTemplate.php │ │ │ ├── NotificationTemplateBrandingOptions.php │ │ │ ├── NotifyUserAction.php │ │ │ ├── NumberColumn.php │ │ │ ├── NumberRange.php │ │ │ ├── OAuth2PermissionGrant.php │ │ │ ├── OathTokenMetadata.php │ │ │ ├── ObjectDefinition.php │ │ │ ├── ObjectFlowTypes.php │ │ │ ├── ObjectIdentity.php │ │ │ ├── ObjectMapping.php │ │ │ ├── ObliterationBehavior.php │ │ │ ├── OemWarranty.php │ │ │ ├── OemWarrantyInformationOnboarding.php │ │ │ ├── OfferShiftRequest.php │ │ │ ├── Office365ActiveUserCounts.php │ │ │ ├── Office365ActiveUserDetail.php │ │ │ ├── Office365GroupsActivityCounts.php │ │ │ ├── Office365GroupsActivityDetail.php │ │ │ ├── Office365GroupsActivityFileCounts.php │ │ │ ├── Office365GroupsActivityGroupCounts.php │ │ │ ├── Office365GroupsActivityStorage.php │ │ │ ├── Office365ServicesUserCounts.php │ │ │ ├── OfficeGraphInsights.php │ │ │ ├── OfficeProductId.php │ │ │ ├── OfficeSuiteApp.php │ │ │ ├── OfficeSuiteDefaultFileFormatType.php │ │ │ ├── OfficeSuiteInstallProgressDisplayLevel.php │ │ │ ├── OfficeUpdateChannel.php │ │ │ ├── OmaSetting.php │ │ │ ├── OmaSettingBase64.php │ │ │ ├── OmaSettingBoolean.php │ │ │ ├── OmaSettingDateTime.php │ │ │ ├── OmaSettingFloatingPoint.php │ │ │ ├── OmaSettingInteger.php │ │ │ ├── OmaSettingString.php │ │ │ ├── OmaSettingStringXml.php │ │ │ ├── OnPremisesAccidentalDeletionPrevention.php │ │ │ ├── OnPremisesAgent.php │ │ │ ├── OnPremisesAgentGroup.php │ │ │ ├── OnPremisesApplicationSegment.php │ │ │ ├── OnPremisesConditionalAccessSettings.php │ │ │ ├── OnPremisesCurrentExportData.php │ │ │ ├── OnPremisesDirectorySynchronization.php │ │ │ ├── OnPremisesDirectorySynchronizationConfiguration.php │ │ │ ├── OnPremisesDirectorySynchronizationDeletionPreventionType.php │ │ │ ├── OnPremisesDirectorySynchronizationFeature.php │ │ │ ├── OnPremisesExtensionAttributes.php │ │ │ ├── OnPremisesProvisioningError.php │ │ │ ├── OnPremisesPublishing.php │ │ │ ├── OnPremisesPublishingProfile.php │ │ │ ├── OnPremisesPublishingSingleSignOn.php │ │ │ ├── OnPremisesPublishingType.php │ │ │ ├── OnPremisesWritebackConfiguration.php │ │ │ ├── OnTokenIssuanceStartCustomExtension.php │ │ │ ├── OnTokenIssuanceStartCustomExtensionHandler.php │ │ │ ├── OnTokenIssuanceStartHandler.php │ │ │ ├── OnTokenIssuanceStartListener.php │ │ │ ├── OnTokenIssuanceStartReturnClaim.php │ │ │ ├── OnboardingStatus.php │ │ │ ├── Onenote.php │ │ │ ├── OnenoteEntityBaseModel.php │ │ │ ├── OnenoteEntityHierarchyModel.php │ │ │ ├── OnenoteEntitySchemaObjectModel.php │ │ │ ├── OnenoteOperation.php │ │ │ ├── OnenoteOperationError.php │ │ │ ├── OnenotePage.php │ │ │ ├── OnenotePagePreview.php │ │ │ ├── OnenotePagePreviewLinks.php │ │ │ ├── OnenotePatchActionType.php │ │ │ ├── OnenotePatchContentCommand.php │ │ │ ├── OnenotePatchInsertPosition.php │ │ │ ├── OnenoteResource.php │ │ │ ├── OnenoteSection.php │ │ │ ├── OnenoteSourceService.php │ │ │ ├── OnenoteUserRole.php │ │ │ ├── OnlineMeeting.php │ │ │ ├── OnlineMeetingContentSharingDisabledReason.php │ │ │ ├── OnlineMeetingForwarders.php │ │ │ ├── OnlineMeetingInfo.php │ │ │ ├── OnlineMeetingPresenters.php │ │ │ ├── OnlineMeetingProviderType.php │ │ │ ├── OnlineMeetingRestricted.php │ │ │ ├── OnlineMeetingRole.php │ │ │ ├── OnlineMeetingVideoDisabledReason.php │ │ │ ├── OpenIdConnectIdentityProvider.php │ │ │ ├── OpenIdConnectProvider.php │ │ │ ├── OpenIdConnectResponseMode.php │ │ │ ├── OpenIdConnectResponseTypes.php │ │ │ ├── OpenShift.php │ │ │ ├── OpenShiftChangeRequest.php │ │ │ ├── OpenShiftItem.php │ │ │ ├── OpenTypeExtension.php │ │ │ ├── OperatingSystemUpgradeEligibility.php │ │ │ ├── OperatingSystemVersionRange.php │ │ │ ├── Operation.php │ │ │ ├── OperationApprovalPolicySet.php │ │ │ ├── OperationError.php │ │ │ ├── OperationResult.php │ │ │ ├── OperationStatus.php │ │ │ ├── Operator.php │ │ │ ├── OpticalCharacterRecognitionConfiguration.php │ │ │ ├── OptionalClaim.php │ │ │ ├── OptionalClaims.php │ │ │ ├── OrgContact.php │ │ │ ├── Organization.php │ │ │ ├── OrganizationSettings.php │ │ │ ├── OrganizationalBranding.php │ │ │ ├── OrganizationalBrandingLocalization.php │ │ │ ├── OrganizationalBrandingProperties.php │ │ │ ├── OrganizerMeetingInfo.php │ │ │ ├── OsVersionCount.php │ │ │ ├── OutOfBoxExperienceSettings.php │ │ │ ├── OutOfOfficeSettings.php │ │ │ ├── OutboundSharedUserProfile.php │ │ │ ├── OutgoingCallOptions.php │ │ │ ├── OutlierContainerType.php │ │ │ ├── OutlierMemberType.php │ │ │ ├── OutlookCategory.php │ │ │ ├── OutlookGeoCoordinates.php │ │ │ ├── OutlookItem.php │ │ │ ├── OutlookTask.php │ │ │ ├── OutlookTaskFolder.php │ │ │ ├── OutlookTaskGroup.php │ │ │ ├── OutlookUser.php │ │ │ ├── OverallPrintUsageSummary.php │ │ │ ├── OwnerType.php │ │ │ ├── Package.php │ │ │ ├── PageLayoutType.php │ │ │ ├── PageLinks.php │ │ │ ├── PageOrientation.php │ │ │ ├── PagePromotionType.php │ │ │ ├── ParentLabelDetails.php │ │ │ ├── ParentalControlSettings.php │ │ │ ├── ParseExpressionResponse.php │ │ │ ├── Participant.php │ │ │ ├── ParticipantInfo.php │ │ │ ├── ParticipantJoiningNotification.php │ │ │ ├── ParticipantJoiningResponse.php │ │ │ ├── ParticipantLeftNotification.php │ │ │ ├── PartnerInformation.php │ │ │ ├── PartnerTenantType.php │ │ │ ├── PasswordAuthenticationMethod.php │ │ │ ├── PasswordCredential.php │ │ │ ├── PasswordCredentialConfiguration.php │ │ │ ├── PasswordProfile.php │ │ │ ├── PasswordResetResponse.php │ │ │ ├── PasswordSingleSignOnCredentialSet.php │ │ │ ├── PasswordSingleSignOnField.php │ │ │ ├── PasswordSingleSignOnSettings.php │ │ │ ├── PasswordValidationInformation.php │ │ │ ├── PasswordlessMicrosoftAuthenticatorAuthenticationMethod.php │ │ │ ├── PatternedRecurrence.php │ │ │ ├── Payload.php │ │ │ ├── PayloadBrand.php │ │ │ ├── PayloadByFilter.php │ │ │ ├── PayloadCoachmark.php │ │ │ ├── PayloadCompatibleAssignmentFilter.php │ │ │ ├── PayloadComplexity.php │ │ │ ├── PayloadDeliveryPlatform.php │ │ │ ├── PayloadDetail.php │ │ │ ├── PayloadIndustry.php │ │ │ ├── PayloadRequest.php │ │ │ ├── PayloadResponse.php │ │ │ ├── PayloadTheme.php │ │ │ ├── PayloadTypes.php │ │ │ ├── PaymentMethod.php │ │ │ ├── PaymentTerm.php │ │ │ ├── PendingContentUpdate.php │ │ │ ├── PendingOperations.php │ │ │ ├── PerfectForwardSecrecyGroup.php │ │ │ ├── Permission.php │ │ │ ├── PermissionClassificationType.php │ │ │ ├── PermissionGrantConditionSet.php │ │ │ ├── PermissionGrantPolicy.php │ │ │ ├── PermissionScope.php │ │ │ ├── PermissionType.php │ │ │ ├── PersistentBrowserSessionControl.php │ │ │ ├── PersistentBrowserSessionMode.php │ │ │ ├── Person.php │ │ │ ├── PersonAnnotation.php │ │ │ ├── PersonAnnualEvent.php │ │ │ ├── PersonAnnualEventType.php │ │ │ ├── PersonAward.php │ │ │ ├── PersonCertification.php │ │ │ ├── PersonDataSource.php │ │ │ ├── PersonDataSources.php │ │ │ ├── PersonExtension.php │ │ │ ├── PersonInterest.php │ │ │ ├── PersonName.php │ │ │ ├── PersonNamePronounciation.php │ │ │ ├── PersonOrGroupColumn.php │ │ │ ├── PersonRelationship.php │ │ │ ├── PersonResponsibility.php │ │ │ ├── PersonWebsite.php │ │ │ ├── PersonalProfilePersonalPlayStoreMode.php │ │ │ ├── Phone.php │ │ │ ├── PhoneAuthenticationMethod.php │ │ │ ├── PhoneType.php │ │ │ ├── Photo.php │ │ │ ├── PhysicalAddress.php │ │ │ ├── PhysicalAddressType.php │ │ │ ├── PhysicalOfficeAddress.php │ │ │ ├── Picture.php │ │ │ ├── PinnedChatMessageInfo.php │ │ │ ├── Pkcs12Certificate.php │ │ │ ├── Pkcs12CertificateInformation.php │ │ │ ├── Place.php │ │ │ ├── Planner.php │ │ │ ├── PlannerAppliedCategories.php │ │ │ ├── PlannerAssignedToTaskBoardTaskFormat.php │ │ │ ├── PlannerAssignment.php │ │ │ ├── PlannerAssignments.php │ │ │ ├── PlannerBucket.php │ │ │ ├── PlannerBucketCreation.php │ │ │ ├── PlannerBucketPropertyRule.php │ │ │ ├── PlannerBucketTaskBoardTaskFormat.php │ │ │ ├── PlannerCategoryDescriptions.php │ │ │ ├── PlannerChecklistItem.php │ │ │ ├── PlannerChecklistItems.php │ │ │ ├── PlannerContainerType.php │ │ │ ├── PlannerContextState.php │ │ │ ├── PlannerCreationSourceKind.php │ │ │ ├── PlannerDelta.php │ │ │ ├── PlannerExternalBucketSource.php │ │ │ ├── PlannerExternalPlanSource.php │ │ │ ├── PlannerExternalReference.php │ │ │ ├── PlannerExternalReferences.php │ │ │ ├── PlannerExternalTaskSource.php │ │ │ ├── PlannerExternalTaskSourceDisplayType.php │ │ │ ├── PlannerFavoritePlanReference.php │ │ │ ├── PlannerFavoritePlanReferenceCollection.php │ │ │ ├── PlannerFieldRules.php │ │ │ ├── PlannerGroup.php │ │ │ ├── PlannerOrderHintsByAssignee.php │ │ │ ├── PlannerPlan.php │ │ │ ├── PlannerPlanAccessLevel.php │ │ │ ├── PlannerPlanConfiguration.php │ │ │ ├── PlannerPlanConfigurationBucketDefinition.php │ │ │ ├── PlannerPlanConfigurationBucketLocalization.php │ │ │ ├── PlannerPlanConfigurationLocalization.php │ │ │ ├── PlannerPlanContainer.php │ │ │ ├── PlannerPlanContext.php │ │ │ ├── PlannerPlanContextCollection.php │ │ │ ├── PlannerPlanContextDetails.php │ │ │ ├── PlannerPlanContextDetailsCollection.php │ │ │ ├── PlannerPlanContextType.php │ │ │ ├── PlannerPlanCreation.php │ │ │ ├── PlannerPlanDetails.php │ │ │ ├── PlannerPlanPropertyRule.php │ │ │ ├── PlannerPreviewType.php │ │ │ ├── PlannerProgressTaskBoardTaskFormat.php │ │ │ ├── PlannerPropertyRule.php │ │ │ ├── PlannerRecentPlanReference.php │ │ │ ├── PlannerRecentPlanReferenceCollection.php │ │ │ ├── PlannerRecurrenceSchedule.php │ │ │ ├── PlannerRelationshipBasedUserType.php │ │ │ ├── PlannerRelationshipUserRoles.php │ │ │ ├── PlannerRoster.php │ │ │ ├── PlannerRosterMember.php │ │ │ ├── PlannerRuleKind.php │ │ │ ├── PlannerRuleOverride.php │ │ │ ├── PlannerSharedWithContainer.php │ │ │ ├── PlannerTask.php │ │ │ ├── PlannerTaskConfiguration.php │ │ │ ├── PlannerTaskConfigurationRoleBase.php │ │ │ ├── PlannerTaskCreation.php │ │ │ ├── PlannerTaskDetails.php │ │ │ ├── PlannerTaskPolicy.php │ │ │ ├── PlannerTaskPropertyRule.php │ │ │ ├── PlannerTaskRecurrence.php │ │ │ ├── PlannerTaskRoleBasedRule.php │ │ │ ├── PlannerTaskTargetKind.php │ │ │ ├── PlannerTeamsPublicationInfo.php │ │ │ ├── PlannerUser.php │ │ │ ├── PlannerUserIds.php │ │ │ ├── PlannerUserRoleKind.php │ │ │ ├── Platform.php │ │ │ ├── PlayPromptCompletionReason.php │ │ │ ├── PlayPromptOperation.php │ │ │ ├── PolicyBase.php │ │ │ ├── PolicyPlatformType.php │ │ │ ├── PolicyRoot.php │ │ │ ├── PolicyScope.php │ │ │ ├── PolicySet.php │ │ │ ├── PolicySetAssignment.php │ │ │ ├── PolicySetItem.php │ │ │ ├── PolicySetStatus.php │ │ │ ├── PositionDetail.php │ │ │ ├── Post.php │ │ │ ├── PostType.php │ │ │ ├── PostalAddressType.php │ │ │ ├── PowerActionType.php │ │ │ ├── PowerliftDownloadRequest.php │ │ │ ├── PowerliftIncidentMetadata.php │ │ │ ├── PreAuthorizedApplication.php │ │ │ ├── PrereleaseFeatures.php │ │ │ ├── Presence.php │ │ │ ├── PresenceStatusMessage.php │ │ │ ├── Presentation.php │ │ │ ├── PrincipalResourceMembershipsScope.php │ │ │ ├── PrintCertificateSigningRequest.php │ │ │ ├── PrintColorConfiguration.php │ │ │ ├── PrintColorMode.php │ │ │ ├── PrintConnector.php │ │ │ ├── PrintDocument.php │ │ │ ├── PrintDocumentUploadProperties.php │ │ │ ├── PrintDuplexConfiguration.php │ │ │ ├── PrintDuplexMode.php │ │ │ ├── PrintEvent.php │ │ │ ├── PrintFinishing.php │ │ │ ├── PrintJob.php │ │ │ ├── PrintJobConfiguration.php │ │ │ ├── PrintJobProcessingState.php │ │ │ ├── PrintJobStateDetail.php │ │ │ ├── PrintJobStatus.php │ │ │ ├── PrintMargin.php │ │ │ ├── PrintMediaType.php │ │ │ ├── PrintMultipageLayout.php │ │ │ ├── PrintOperation.php │ │ │ ├── PrintOperationProcessingState.php │ │ │ ├── PrintOperationStatus.php │ │ │ ├── PrintOrientation.php │ │ │ ├── PrintPresentationDirection.php │ │ │ ├── PrintQuality.php │ │ │ ├── PrintScaling.php │ │ │ ├── PrintService.php │ │ │ ├── PrintServiceEndpoint.php │ │ │ ├── PrintSettings.php │ │ │ ├── PrintTask.php │ │ │ ├── PrintTaskDefinition.php │ │ │ ├── PrintTaskProcessingState.php │ │ │ ├── PrintTaskStatus.php │ │ │ ├── PrintTaskTrigger.php │ │ │ ├── PrintUsage.php │ │ │ ├── PrintUsageByPrinter.php │ │ │ ├── PrintUsageByUser.php │ │ │ ├── PrintUsageSummary.php │ │ │ ├── Printer.php │ │ │ ├── PrinterBase.php │ │ │ ├── PrinterCapabilities.php │ │ │ ├── PrinterCreateOperation.php │ │ │ ├── PrinterDefaults.php │ │ │ ├── PrinterDocumentConfiguration.php │ │ │ ├── PrinterFeedDirection.php │ │ │ ├── PrinterFeedOrientation.php │ │ │ ├── PrinterLocation.php │ │ │ ├── PrinterProcessingState.php │ │ │ ├── PrinterProcessingStateDetail.php │ │ │ ├── PrinterProcessingStateReason.php │ │ │ ├── PrinterShare.php │ │ │ ├── PrinterShareViewpoint.php │ │ │ ├── PrinterStatus.php │ │ │ ├── PrinterUsageSummary.php │ │ │ ├── Priority.php │ │ │ ├── Privacy.php │ │ │ ├── PrivacyProfile.php │ │ │ ├── PrivateLinkDetails.php │ │ │ ├── PrivilegeManagementEndUserType.php │ │ │ ├── PrivilegedAccess.php │ │ │ ├── PrivilegedAccessGroup.php │ │ │ ├── PrivilegedAccessGroupAssignmentSchedule.php │ │ │ ├── PrivilegedAccessGroupAssignmentScheduleInstance.php │ │ │ ├── PrivilegedAccessGroupAssignmentScheduleRequest.php │ │ │ ├── PrivilegedAccessGroupAssignmentType.php │ │ │ ├── PrivilegedAccessGroupEligibilitySchedule.php │ │ │ ├── PrivilegedAccessGroupEligibilityScheduleInstance.php │ │ │ ├── PrivilegedAccessGroupEligibilityScheduleRequest.php │ │ │ ├── PrivilegedAccessGroupMemberType.php │ │ │ ├── PrivilegedAccessGroupRelationships.php │ │ │ ├── PrivilegedAccessRoot.php │ │ │ ├── PrivilegedAccessSchedule.php │ │ │ ├── PrivilegedAccessScheduleInstance.php │ │ │ ├── PrivilegedAccessScheduleRequest.php │ │ │ ├── PrivilegedApproval.php │ │ │ ├── PrivilegedOperationEvent.php │ │ │ ├── PrivilegedRole.php │ │ │ ├── PrivilegedRoleAssignment.php │ │ │ ├── PrivilegedRoleAssignmentRequest.php │ │ │ ├── PrivilegedRoleSettings.php │ │ │ ├── PrivilegedRoleSummary.php │ │ │ ├── PrivilegedSignupStatus.php │ │ │ ├── Process.php │ │ │ ├── ProcessIntegrityLevel.php │ │ │ ├── Profile.php │ │ │ ├── ProfileCardAnnotation.php │ │ │ ├── ProfileCardProperty.php │ │ │ ├── ProfilePhoto.php │ │ │ ├── Program.php │ │ │ ├── ProgramControl.php │ │ │ ├── ProgramControlType.php │ │ │ ├── ProgramResource.php │ │ │ ├── ProjectParticipation.php │ │ │ ├── Prompt.php │ │ │ ├── PromptLoginBehavior.php │ │ │ ├── PronounsSettings.php │ │ │ ├── Properties.php │ │ │ ├── Property.php │ │ │ ├── PropertyToEvaluate.php │ │ │ ├── PropertyType.php │ │ │ ├── ProtectAdhocAction.php │ │ │ ├── ProtectByTemplateAction.php │ │ │ ├── ProtectDoNotForwardAction.php │ │ │ ├── ProtectGroup.php │ │ │ ├── ProtectOnlineMeetingAction.php │ │ │ ├── ProtectSite.php │ │ │ ├── ProtocolType.php │ │ │ ├── ProviderTenantSetting.php │ │ │ ├── ProvisionChannelEmailResult.php │ │ │ ├── ProvisionedIdentity.php │ │ │ ├── ProvisionedPlan.php │ │ │ ├── ProvisioningAction.php │ │ │ ├── ProvisioningErrorInfo.php │ │ │ ├── ProvisioningObjectSummary.php │ │ │ ├── ProvisioningResult.php │ │ │ ├── ProvisioningServicePrincipal.php │ │ │ ├── ProvisioningStatusErrorCategory.php │ │ │ ├── ProvisioningStatusInfo.php │ │ │ ├── ProvisioningStep.php │ │ │ ├── ProvisioningStepType.php │ │ │ ├── ProvisioningSystem.php │ │ │ ├── ProxiedDomain.php │ │ │ ├── PublicClientApplication.php │ │ │ ├── PublicError.php │ │ │ ├── PublicErrorDetail.php │ │ │ ├── PublicErrorResponse.php │ │ │ ├── PublicInnerError.php │ │ │ ├── PublicationFacet.php │ │ │ ├── PublishedResource.php │ │ │ ├── PurchaseInvoice.php │ │ │ ├── PurchaseInvoiceLine.php │ │ │ ├── QuarantineReason.php │ │ │ ├── Quota.php │ │ │ ├── RankedEmailAddress.php │ │ │ ├── RatingAppsType.php │ │ │ ├── RatingAustraliaMoviesType.php │ │ │ ├── RatingAustraliaTelevisionType.php │ │ │ ├── RatingCanadaMoviesType.php │ │ │ ├── RatingCanadaTelevisionType.php │ │ │ ├── RatingFranceMoviesType.php │ │ │ ├── RatingFranceTelevisionType.php │ │ │ ├── RatingGermanyMoviesType.php │ │ │ ├── RatingGermanyTelevisionType.php │ │ │ ├── RatingIrelandMoviesType.php │ │ │ ├── RatingIrelandTelevisionType.php │ │ │ ├── RatingJapanMoviesType.php │ │ │ ├── RatingJapanTelevisionType.php │ │ │ ├── RatingNewZealandMoviesType.php │ │ │ ├── RatingNewZealandTelevisionType.php │ │ │ ├── RatingUnitedKingdomMoviesType.php │ │ │ ├── RatingUnitedKingdomTelevisionType.php │ │ │ ├── RatingUnitedStatesMoviesType.php │ │ │ ├── RatingUnitedStatesTelevisionType.php │ │ │ ├── RbacApplication.php │ │ │ ├── RbacApplicationMultiple.php │ │ │ ├── ReactionsFacet.php │ │ │ ├── RecentNotebook.php │ │ │ ├── RecentNotebookLinks.php │ │ │ ├── Recipient.php │ │ │ ├── RecipientScopeType.php │ │ │ ├── RecommendLabelAction.php │ │ │ ├── Recommendation.php │ │ │ ├── RecommendationBase.php │ │ │ ├── RecommendationCategory.php │ │ │ ├── RecommendationFeatureAreas.php │ │ │ ├── RecommendationPriority.php │ │ │ ├── RecommendationStatus.php │ │ │ ├── RecommendationType.php │ │ │ ├── RecommendedAction.php │ │ │ ├── RecordCompletionReason.php │ │ │ ├── RecordOperation.php │ │ │ ├── RecordingInfo.php │ │ │ ├── RecordingStatus.php │ │ │ ├── RecurrencePattern.php │ │ │ ├── RecurrencePatternType.php │ │ │ ├── RecurrenceRange.php │ │ │ ├── RecurrenceRangeType.php │ │ │ ├── RedirectSingleSignOnExtension.php │ │ │ ├── RedirectUriSettings.php │ │ │ ├── RedundantAssignmentAlertConfiguration.php │ │ │ ├── RedundantAssignmentAlertIncident.php │ │ │ ├── ReferenceAttachment.php │ │ │ ├── ReferenceAttachmentPermission.php │ │ │ ├── ReferenceAttachmentProvider.php │ │ │ ├── ReferencedObject.php │ │ │ ├── RegionalAndLanguageSettings.php │ │ │ ├── RegionalFormatOverrides.php │ │ │ ├── RegistrationAuthMethod.php │ │ │ ├── RegistrationEnforcement.php │ │ │ ├── RegistrationStatusType.php │ │ │ ├── RegistryHive.php │ │ │ ├── RegistryKeyState.php │ │ │ ├── RegistryOperation.php │ │ │ ├── RegistryValueType.php │ │ │ ├── RejectJoinResponse.php │ │ │ ├── RejectReason.php │ │ │ ├── RelatedContact.php │ │ │ ├── RelatedPerson.php │ │ │ ├── RelyingPartyDetailedSummary.php │ │ │ ├── RemediationState.php │ │ │ ├── Reminder.php │ │ │ ├── RemoteAction.php │ │ │ ├── RemoteActionAudit.php │ │ │ ├── RemoteAssistanceOnboardingStatus.php │ │ │ ├── RemoteAssistancePartner.php │ │ │ ├── RemoteAssistanceSettings.php │ │ │ ├── RemoteAssistanceState.php │ │ │ ├── RemoteItem.php │ │ │ ├── RemoteLockActionResult.php │ │ │ ├── RemoveAccessApplyAction.php │ │ │ ├── RemoveContentFooterAction.php │ │ │ ├── RemoveContentHeaderAction.php │ │ │ ├── RemoveProtectionAction.php │ │ │ ├── RemoveWatermarkAction.php │ │ │ ├── RemovedState.php │ │ │ ├── RenameAction.php │ │ │ ├── ReplyRestriction.php │ │ │ ├── Report.php │ │ │ ├── ReportRoot.php │ │ │ ├── ReputationCategory.php │ │ │ ├── Request.php │ │ │ ├── RequestRemoteHelpSessionAccessResponse.php │ │ │ ├── RequestSchedule.php │ │ │ ├── RequestSignatureVerification.php │ │ │ ├── RequestorManager.php │ │ │ ├── RequestorSettings.php │ │ │ ├── RequiredPasswordType.php │ │ │ ├── RequiredResourceAccess.php │ │ │ ├── RequirementProvider.php │ │ │ ├── ResetPasscodeActionResult.php │ │ │ ├── ResourceAccess.php │ │ │ ├── ResourceAction.php │ │ │ ├── ResourceData.php │ │ │ ├── ResourceOperation.php │ │ │ ├── ResourcePermission.php │ │ │ ├── ResourceReference.php │ │ │ ├── ResourceSpecificPermission.php │ │ │ ├── ResourceSpecificPermissionGrant.php │ │ │ ├── ResourceVisualization.php │ │ │ ├── ResponseStatus.php │ │ │ ├── ResponseType.php │ │ │ ├── ResponsiblePolicy.php │ │ │ ├── ResponsibleSensitiveType.php │ │ │ ├── RestoreAction.php │ │ │ ├── RestoreTimeRange.php │ │ │ ├── RestrictedAppsState.php │ │ │ ├── RestrictedAppsViolation.php │ │ │ ├── RestrictionAction.php │ │ │ ├── RestrictionTrigger.php │ │ │ ├── ResultInfo.php │ │ │ ├── ResultTemplate.php │ │ │ ├── ResultTemplateDictionary.php │ │ │ ├── ResultTemplateOption.php │ │ │ ├── ResultantAppState.php │ │ │ ├── ResultantAppStateDetail.php │ │ │ ├── RetentionLabelSettings.php │ │ │ ├── RetireScheduledManagedDevice.php │ │ │ ├── RetrieveRemoteHelpSessionResponse.php │ │ │ ├── RevokeAppleVppLicensesActionResult.php │ │ │ ├── RgbColor.php │ │ │ ├── RichLongRunningOperation.php │ │ │ ├── RiskDetail.php │ │ │ ├── RiskDetection.php │ │ │ ├── RiskDetectionTimingType.php │ │ │ ├── RiskEventType.php │ │ │ ├── RiskLevel.php │ │ │ ├── RiskServicePrincipalActivity.php │ │ │ ├── RiskState.php │ │ │ ├── RiskUserActivity.php │ │ │ ├── RiskyServicePrincipal.php │ │ │ ├── RiskyServicePrincipalHistoryItem.php │ │ │ ├── RiskyUser.php │ │ │ ├── RiskyUserHistoryItem.php │ │ │ ├── RoleAssignment.php │ │ │ ├── RoleAssignmentScheduleFilterByCurrentUserOptions.php │ │ │ ├── RoleAssignmentScheduleInstanceFilterByCurrentUserOptions.php │ │ │ ├── RoleAssignmentScheduleRequestFilterByCurrentUserOptions.php │ │ │ ├── RoleAssignmentScopeType.php │ │ │ ├── RoleDefinition.php │ │ │ ├── RoleEligibilityScheduleFilterByCurrentUserOptions.php │ │ │ ├── RoleEligibilityScheduleInstanceFilterByCurrentUserOptions.php │ │ │ ├── RoleEligibilityScheduleRequestFilterByCurrentUserOptions.php │ │ │ ├── RoleManagement.php │ │ │ ├── RoleManagementAlert.php │ │ │ ├── RoleMembershipGovernanceCriteria.php │ │ │ ├── RolePermission.php │ │ │ ├── RoleScopeTag.php │ │ │ ├── RoleScopeTagAutoAssignment.php │ │ │ ├── RoleScopeTagInfo.php │ │ │ ├── RoleSuccessStatistics.php │ │ │ ├── RoleSummaryStatus.php │ │ │ ├── RolesAssignedOutsidePrivilegedIdentityManagementAlertConfiguration.php │ │ │ ├── RolesAssignedOutsidePrivilegedIdentityManagementAlertIncident.php │ │ │ ├── Room.php │ │ │ ├── RoomList.php │ │ │ ├── Root.php │ │ │ ├── RotateBitLockerKeysDeviceActionResult.php │ │ │ ├── RoutingMode.php │ │ │ ├── RoutingPolicy.php │ │ │ ├── RoutingType.php │ │ │ ├── RubricCriterion.php │ │ │ ├── RubricLevel.php │ │ │ ├── RubricQuality.php │ │ │ ├── RubricQualityFeedbackModel.php │ │ │ ├── RubricQualitySelectedColumnModel.php │ │ │ ├── RuleMode.php │ │ │ ├── RunAsAccountType.php │ │ │ ├── RunState.php │ │ │ ├── SafeSearchFilterType.php │ │ │ ├── SalesCreditMemo.php │ │ │ ├── SalesCreditMemoLine.php │ │ │ ├── SalesInvoice.php │ │ │ ├── SalesInvoiceLine.php │ │ │ ├── SalesOrder.php │ │ │ ├── SalesOrderLine.php │ │ │ ├── SalesQuote.php │ │ │ ├── SalesQuoteLine.php │ │ │ ├── SamlOrWsFedExternalDomainFederation.php │ │ │ ├── SamlOrWsFedProvider.php │ │ │ ├── SamlSingleSignOnSettings.php │ │ │ ├── Schedule.php │ │ │ ├── ScheduleChangeRequest.php │ │ │ ├── ScheduleChangeRequestActor.php │ │ │ ├── ScheduleChangeState.php │ │ │ ├── ScheduleEntity.php │ │ │ ├── ScheduleEntityTheme.php │ │ │ ├── ScheduleInformation.php │ │ │ ├── ScheduleItem.php │ │ │ ├── ScheduleRequestActions.php │ │ │ ├── ScheduledRetireState.php │ │ │ ├── SchedulingGroup.php │ │ │ ├── Schema.php │ │ │ ├── SchemaExtension.php │ │ │ ├── ScopeOperatorMultiValuedComparisonType.php │ │ │ ├── ScopeOperatorType.php │ │ │ ├── ScopedRoleMembership.php │ │ │ ├── ScreenSharingRole.php │ │ │ ├── SearchAggregation.php │ │ │ ├── SearchAlteration.php │ │ │ ├── SearchAlterationOptions.php │ │ │ ├── SearchAlterationType.php │ │ │ ├── SearchBucket.php │ │ │ ├── SearchContent.php │ │ │ ├── SearchEntity.php │ │ │ ├── SearchHit.php │ │ │ ├── SearchHitsContainer.php │ │ │ ├── SearchQuery.php │ │ │ ├── SearchQueryString.php │ │ │ ├── SearchRequest.php │ │ │ ├── SearchResponse.php │ │ │ ├── SearchResult.php │ │ │ ├── SectionEmphasisType.php │ │ │ ├── SectionGroup.php │ │ │ ├── SectionLinks.php │ │ │ ├── SecureAssessmentAccountType.php │ │ │ ├── SecureBootWithDMAType.php │ │ │ ├── SecureScore.php │ │ │ ├── SecureScoreControlProfile.php │ │ │ ├── SecureScoreControlStateUpdate.php │ │ │ ├── SecureSignInSessionControl.php │ │ │ ├── Security.php │ │ │ ├── SecurityAction.php │ │ │ ├── SecurityActionState.php │ │ │ ├── SecurityBaselineCategoryStateSummary.php │ │ │ ├── SecurityBaselineComplianceState.php │ │ │ ├── SecurityBaselineContributingPolicy.php │ │ │ ├── SecurityBaselineDeviceState.php │ │ │ ├── SecurityBaselinePolicySourceType.php │ │ │ ├── SecurityBaselineSettingState.php │ │ │ ├── SecurityBaselineState.php │ │ │ ├── SecurityBaselineStateSummary.php │ │ │ ├── SecurityBaselineTemplate.php │ │ │ ├── SecurityConfigurationTask.php │ │ │ ├── SecurityNetworkProtocol.php │ │ │ ├── SecurityProviderStatus.php │ │ │ ├── SecurityQuestionType.php │ │ │ ├── SecurityReportsRoot.php │ │ │ ├── SecurityResource.php │ │ │ ├── SecurityResourceType.php │ │ │ ├── SecurityVendorInformation.php │ │ │ ├── SegmentConfiguration.php │ │ │ ├── SelfServiceSignUpAuthenticationFlowConfiguration.php │ │ │ ├── SelfSignedCertificate.php │ │ │ ├── SensitiveContentEvidence.php │ │ │ ├── SensitiveContentLocation.php │ │ │ ├── SensitiveType.php │ │ │ ├── SensitiveTypeScope.php │ │ │ ├── SensitiveTypeSource.php │ │ │ ├── Sensitivity.php │ │ │ ├── SensitivityLabel.php │ │ │ ├── SensitivityLabelAssignment.php │ │ │ ├── SensitivityLabelAssignmentMethod.php │ │ │ ├── SensitivityLabelTarget.php │ │ │ ├── SensitivityPolicySettings.php │ │ │ ├── SequentialActivationRenewalsAlertConfiguration.php │ │ │ ├── SequentialActivationRenewalsAlertIncident.php │ │ │ ├── ServerProcessedContent.php │ │ │ ├── ServiceAnnouncement.php │ │ │ ├── ServiceAnnouncementAttachment.php │ │ │ ├── ServiceAnnouncementBase.php │ │ │ ├── ServiceHealth.php │ │ │ ├── ServiceHealthClassificationType.php │ │ │ ├── ServiceHealthIssue.php │ │ │ ├── ServiceHealthIssuePost.php │ │ │ ├── ServiceHealthOrigin.php │ │ │ ├── ServiceHealthStatus.php │ │ │ ├── ServiceHostedMediaConfig.php │ │ │ ├── ServiceInformation.php │ │ │ ├── ServiceNowAuthenticationMethod.php │ │ │ ├── ServiceNowConnection.php │ │ │ ├── ServiceNowConnectionStatus.php │ │ │ ├── ServiceNowOauthSecretAuthentication.php │ │ │ ├── ServicePlanInfo.php │ │ │ ├── ServicePrincipal.php │ │ │ ├── ServicePrincipalCreationConditionSet.php │ │ │ ├── ServicePrincipalCreationPolicy.php │ │ │ ├── ServicePrincipalIdentity.php │ │ │ ├── ServicePrincipalLockConfiguration.php │ │ │ ├── ServicePrincipalRiskDetection.php │ │ │ ├── ServiceProvisioningError.php │ │ │ ├── ServiceProvisioningLinkedResourceErrorDetail.php │ │ │ ├── ServiceProvisioningResourceError.php │ │ │ ├── ServiceProvisioningResourceErrorDetail.php │ │ │ ├── ServiceProvisioningXmlError.php │ │ │ ├── ServiceStartType.php │ │ │ ├── ServiceUpdateCategory.php │ │ │ ├── ServiceUpdateMessage.php │ │ │ ├── ServiceUpdateMessageViewpoint.php │ │ │ ├── ServiceUpdateSeverity.php │ │ │ ├── SessionLifetimePolicy.php │ │ │ ├── SettingSource.php │ │ │ ├── SettingSourceType.php │ │ │ ├── SettingStateDeviceSummary.php │ │ │ ├── SettingTemplateValue.php │ │ │ ├── SettingValue.php │ │ │ ├── Settings.php │ │ │ ├── SetupStatus.php │ │ │ ├── ShareAction.php │ │ │ ├── SharePointIdentity.php │ │ │ ├── SharePointIdentitySet.php │ │ │ ├── SharePointOneDriveOptions.php │ │ │ ├── Shared.php │ │ │ ├── SharedAppleDeviceUser.php │ │ │ ├── SharedDriveItem.php │ │ │ ├── SharedEmailDomain.php │ │ │ ├── SharedEmailDomainInvitation.php │ │ │ ├── SharedInsight.php │ │ │ ├── SharedPCAccountDeletionPolicyType.php │ │ │ ├── SharedPCAccountManagerPolicy.php │ │ │ ├── SharedPCAllowedAccountType.php │ │ │ ├── SharedPCConfiguration.php │ │ │ ├── SharedWithChannelTeamInfo.php │ │ │ ├── Sharepoint.php │ │ │ ├── SharepointIds.php │ │ │ ├── SharepointSettings.php │ │ │ ├── SharingCapabilities.php │ │ │ ├── SharingDetail.php │ │ │ ├── SharingDomainRestrictionMode.php │ │ │ ├── SharingInvitation.php │ │ │ ├── SharingLink.php │ │ │ ├── Shift.php │ │ │ ├── ShiftActivity.php │ │ │ ├── ShiftAvailability.php │ │ │ ├── ShiftItem.php │ │ │ ├── ShiftPreferences.php │ │ │ ├── ShiftWorkCloudPcAccessState.php │ │ │ ├── ShipmentMethod.php │ │ │ ├── SignIn.php │ │ │ ├── SignInAccessType.php │ │ │ ├── SignInActivity.php │ │ │ ├── SignInAssistantOptions.php │ │ │ ├── SignInFrequencyAuthenticationType.php │ │ │ ├── SignInFrequencyInterval.php │ │ │ ├── SignInFrequencySessionControl.php │ │ │ ├── SignInIdentifierType.php │ │ │ ├── SignInLocation.php │ │ │ ├── SignInPreferences.php │ │ │ ├── SignInStatus.php │ │ │ ├── SignInUserType.php │ │ │ ├── SigninFrequencyType.php │ │ │ ├── SigningCertificateUpdateStatus.php │ │ │ ├── SigningResult.php │ │ │ ├── Simulation.php │ │ │ ├── SimulationAttackTechnique.php │ │ │ ├── SimulationAttackType.php │ │ │ ├── SimulationAutomation.php │ │ │ ├── SimulationAutomationRun.php │ │ │ ├── SimulationAutomationRunStatus.php │ │ │ ├── SimulationAutomationStatus.php │ │ │ ├── SimulationContentSource.php │ │ │ ├── SimulationContentStatus.php │ │ │ ├── SimulationEvent.php │ │ │ ├── SimulationEventsContent.php │ │ │ ├── SimulationReport.php │ │ │ ├── SimulationReportOverview.php │ │ │ ├── SimulationStatus.php │ │ │ ├── SingleSignOnExtension.php │ │ │ ├── SingleSignOnMode.php │ │ │ ├── SingleUser.php │ │ │ ├── SingleValueLegacyExtendedProperty.php │ │ │ ├── Site.php │ │ │ ├── SiteAccessType.php │ │ │ ├── SiteCollection.php │ │ │ ├── SitePage.php │ │ │ ├── SiteSecurityLevel.php │ │ │ ├── SiteSettings.php │ │ │ ├── SizeRange.php │ │ │ ├── SkillProficiency.php │ │ │ ├── SkillProficiencyLevel.php │ │ │ ├── SkypeForBusinessUserConversationMember.php │ │ │ ├── SkypeUserConversationMember.php │ │ │ ├── SmsAuthenticationMethodConfiguration.php │ │ │ ├── SmsAuthenticationMethodTarget.php │ │ │ ├── SocialIdentityProvider.php │ │ │ ├── SoftwareOathAuthenticationMethod.php │ │ │ ├── SoftwareOathAuthenticationMethodConfiguration.php │ │ │ ├── SoftwareUpdateStatusSummary.php │ │ │ ├── SolutionsRoot.php │ │ │ ├── SortProperty.php │ │ │ ├── SpaApplication.php │ │ │ ├── SpecialFolder.php │ │ │ ├── SpecifiedCaptiveNetworkPlugins.php │ │ │ ├── StaffAvailabilityItem.php │ │ │ ├── StagedFeatureName.php │ │ │ ├── StaleSignInAlertConfiguration.php │ │ │ ├── StaleSignInAlertIncident.php │ │ │ ├── StandardTimeZoneOffset.php │ │ │ ├── StandardWebPart.php │ │ │ ├── StartHoldMusicOperation.php │ │ │ ├── StateManagementSetting.php │ │ │ ├── Status.php │ │ │ ├── StatusBase.php │ │ │ ├── StatusDetails.php │ │ │ ├── StopHoldMusicOperation.php │ │ │ ├── Storage.php │ │ │ ├── StoragePlanInformation.php │ │ │ ├── StringKeyAttributeMappingSourceValuePair.php │ │ │ ├── StringKeyLongValuePair.php │ │ │ ├── StringKeyObjectValuePair.php │ │ │ ├── StringKeyStringValuePair.php │ │ │ ├── StrongAuthenticationDetail.php │ │ │ ├── StrongAuthenticationPhoneAppDetail.php │ │ │ ├── StsPolicy.php │ │ │ ├── SubjectAlternativeNameType.php │ │ │ ├── SubjectNameFormat.php │ │ │ ├── SubjectRightsRequest.php │ │ │ ├── SubjectRightsRequestAllMailboxLocation.php │ │ │ ├── SubjectRightsRequestAllSiteLocation.php │ │ │ ├── SubjectRightsRequestDetail.php │ │ │ ├── SubjectRightsRequestEnumeratedMailboxLocation.php │ │ │ ├── SubjectRightsRequestEnumeratedSiteLocation.php │ │ │ ├── SubjectRightsRequestHistory.php │ │ │ ├── SubjectRightsRequestMailboxLocation.php │ │ │ ├── SubjectRightsRequestSiteLocation.php │ │ │ ├── SubjectRightsRequestStage.php │ │ │ ├── SubjectRightsRequestStageDetail.php │ │ │ ├── SubjectRightsRequestStageStatus.php │ │ │ ├── SubjectRightsRequestStatus.php │ │ │ ├── SubjectRightsRequestType.php │ │ │ ├── SubjectSet.php │ │ │ ├── SubscribeToToneOperation.php │ │ │ ├── SubscribedSku.php │ │ │ ├── Subscription.php │ │ │ ├── SuggestedEnrollmentLimit.php │ │ │ ├── SupportedClaimConfiguration.php │ │ │ ├── SwapShiftsChangeRequest.php │ │ │ ├── SymantecCodeSigningCertificate.php │ │ │ ├── Synchronization.php │ │ │ ├── SynchronizationError.php │ │ │ ├── SynchronizationJob.php │ │ │ ├── SynchronizationJobApplicationParameters.php │ │ │ ├── SynchronizationJobRestartCriteria.php │ │ │ ├── SynchronizationJobRestartScope.php │ │ │ ├── SynchronizationJobSubject.php │ │ │ ├── SynchronizationLinkedObjects.php │ │ │ ├── SynchronizationProgress.php │ │ │ ├── SynchronizationQuarantine.php │ │ │ ├── SynchronizationRule.php │ │ │ ├── SynchronizationSchedule.php │ │ │ ├── SynchronizationScheduleState.php │ │ │ ├── SynchronizationSchema.php │ │ │ ├── SynchronizationSecret.php │ │ │ ├── SynchronizationSecretKeyStringValuePair.php │ │ │ ├── SynchronizationStatus.php │ │ │ ├── SynchronizationStatusCode.php │ │ │ ├── SynchronizationTaskExecution.php │ │ │ ├── SynchronizationTaskExecutionResult.php │ │ │ ├── SynchronizationTemplate.php │ │ │ ├── SystemCredentialPreferences.php │ │ │ ├── SystemFacet.php │ │ │ ├── TabUpdatedEventMessageDetail.php │ │ │ ├── TargetPolicyEndpoints.php │ │ │ ├── TargetResource.php │ │ │ ├── TargetedManagedAppConfiguration.php │ │ │ ├── TargetedManagedAppConfigurationPolicySetItem.php │ │ │ ├── TargetedManagedAppGroupType.php │ │ │ ├── TargetedManagedAppPolicyAssignment.php │ │ │ ├── TargetedManagedAppProtection.php │ │ │ ├── TaskFileAttachment.php │ │ │ ├── TaskStatus.php │ │ │ ├── TaxArea.php │ │ │ ├── TaxGroup.php │ │ │ ├── Team.php │ │ │ ├── TeamArchivedEventMessageDetail.php │ │ │ ├── TeamClassSettings.php │ │ │ ├── TeamCreatedEventMessageDetail.php │ │ │ ├── TeamDescriptionUpdatedEventMessageDetail.php │ │ │ ├── TeamDiscoverySettings.php │ │ │ ├── TeamFunSettings.php │ │ │ ├── TeamGuestSettings.php │ │ │ ├── TeamInfo.php │ │ │ ├── TeamJoiningDisabledEventMessageDetail.php │ │ │ ├── TeamJoiningEnabledEventMessageDetail.php │ │ │ ├── TeamMemberSettings.php │ │ │ ├── TeamMembersNotificationRecipient.php │ │ │ ├── TeamMessagingSettings.php │ │ │ ├── TeamRenamedEventMessageDetail.php │ │ │ ├── TeamSpecialization.php │ │ │ ├── TeamSummary.php │ │ │ ├── TeamTemplate.php │ │ │ ├── TeamTemplateAudience.php │ │ │ ├── TeamTemplateDefinition.php │ │ │ ├── TeamUnarchivedEventMessageDetail.php │ │ │ ├── TeamVisibilityType.php │ │ │ ├── TeamsApp.php │ │ │ ├── TeamsAppAuthorization.php │ │ │ ├── TeamsAppDefinition.php │ │ │ ├── TeamsAppDistributionMethod.php │ │ │ ├── TeamsAppIcon.php │ │ │ ├── TeamsAppInstallation.php │ │ │ ├── TeamsAppInstallationScopes.php │ │ │ ├── TeamsAppInstalledEventMessageDetail.php │ │ │ ├── TeamsAppPermissionSet.php │ │ │ ├── TeamsAppPublishingState.php │ │ │ ├── TeamsAppRemovedEventMessageDetail.php │ │ │ ├── TeamsAppResourceSpecificPermission.php │ │ │ ├── TeamsAppResourceSpecificPermissionType.php │ │ │ ├── TeamsAppSettings.php │ │ │ ├── TeamsAppUpgradedEventMessageDetail.php │ │ │ ├── TeamsAsyncOperation.php │ │ │ ├── TeamsAsyncOperationStatus.php │ │ │ ├── TeamsAsyncOperationType.php │ │ │ ├── TeamsTab.php │ │ │ ├── TeamsTabConfiguration.php │ │ │ ├── TeamsTemplate.php │ │ │ ├── Teamwork.php │ │ │ ├── TeamworkAccountConfiguration.php │ │ │ ├── TeamworkActivePeripherals.php │ │ │ ├── TeamworkActivityTopic.php │ │ │ ├── TeamworkActivityTopicSource.php │ │ │ ├── TeamworkApplicationIdentity.php │ │ │ ├── TeamworkApplicationIdentityType.php │ │ │ ├── TeamworkBot.php │ │ │ ├── TeamworkCallEventType.php │ │ │ ├── TeamworkCameraConfiguration.php │ │ │ ├── TeamworkConfiguredPeripheral.php │ │ │ ├── TeamworkConnection.php │ │ │ ├── TeamworkConnectionStatus.php │ │ │ ├── TeamworkContentCameraConfiguration.php │ │ │ ├── TeamworkConversationIdentity.php │ │ │ ├── TeamworkConversationIdentityType.php │ │ │ ├── TeamworkDateTimeConfiguration.php │ │ │ ├── TeamworkDevice.php │ │ │ ├── TeamworkDeviceActivity.php │ │ │ ├── TeamworkDeviceActivityState.php │ │ │ ├── TeamworkDeviceConfiguration.php │ │ │ ├── TeamworkDeviceHealth.php │ │ │ ├── TeamworkDeviceHealthStatus.php │ │ │ ├── TeamworkDeviceOperation.php │ │ │ ├── TeamworkDeviceOperationType.php │ │ │ ├── TeamworkDeviceSoftwareVersions.php │ │ │ ├── TeamworkDeviceType.php │ │ │ ├── TeamworkDisplayConfiguration.php │ │ │ ├── TeamworkDisplayScreenConfiguration.php │ │ │ ├── TeamworkFeaturesConfiguration.php │ │ │ ├── TeamworkHardwareConfiguration.php │ │ │ ├── TeamworkHardwareDetail.php │ │ │ ├── TeamworkHardwareHealth.php │ │ │ ├── TeamworkHostedContent.php │ │ │ ├── TeamworkLoginStatus.php │ │ │ ├── TeamworkMicrophoneConfiguration.php │ │ │ ├── TeamworkNetworkConfiguration.php │ │ │ ├── TeamworkNotificationRecipient.php │ │ │ ├── TeamworkOnPremisesCalendarSyncConfiguration.php │ │ │ ├── TeamworkOnlineMeetingInfo.php │ │ │ ├── TeamworkPeripheral.php │ │ │ ├── TeamworkPeripheralHealth.php │ │ │ ├── TeamworkPeripheralsHealth.php │ │ │ ├── TeamworkSoftwareFreshness.php │ │ │ ├── TeamworkSoftwareType.php │ │ │ ├── TeamworkSoftwareUpdateHealth.php │ │ │ ├── TeamworkSoftwareUpdateStatus.php │ │ │ ├── TeamworkSpeakerConfiguration.php │ │ │ ├── TeamworkSupportedClient.php │ │ │ ├── TeamworkSystemConfiguration.php │ │ │ ├── TeamworkTag.php │ │ │ ├── TeamworkTagIdentity.php │ │ │ ├── TeamworkTagMember.php │ │ │ ├── TeamworkTagType.php │ │ │ ├── TeamworkTeamsClientConfiguration.php │ │ │ ├── TeamworkUserIdentity.php │ │ │ ├── TeamworkUserIdentityType.php │ │ │ ├── TelecomExpenseManagementPartner.php │ │ │ ├── TeleconferenceDeviceAudioQuality.php │ │ │ ├── TeleconferenceDeviceMediaQuality.php │ │ │ ├── TeleconferenceDeviceQuality.php │ │ │ ├── TeleconferenceDeviceScreenSharingQuality.php │ │ │ ├── TeleconferenceDeviceVideoQuality.php │ │ │ ├── TemplateScenarios.php │ │ │ ├── TemporaryAccessPassAuthenticationMethod.php │ │ │ ├── TemporaryAccessPassAuthenticationMethodConfiguration.php │ │ │ ├── TenantAppManagementPolicy.php │ │ │ ├── TenantAttachRBAC.php │ │ │ ├── TenantAttachRBACState.php │ │ │ ├── TenantInformation.php │ │ │ ├── TenantReference.php │ │ │ ├── TenantRelationship.php │ │ │ ├── TenantRelationshipAccessPolicyBase.php │ │ │ ├── TenantSetupInfo.php │ │ │ ├── TermColumn.php │ │ │ ├── TermsAndConditions.php │ │ │ ├── TermsAndConditionsAcceptanceStatus.php │ │ │ ├── TermsAndConditionsAssignment.php │ │ │ ├── TermsAndConditionsGroupAssignment.php │ │ │ ├── TermsExpiration.php │ │ │ ├── TermsOfUseContainer.php │ │ │ ├── TextClassificationRequest.php │ │ │ ├── TextColumn.php │ │ │ ├── TextWebPart.php │ │ │ ├── ThreatAssessmentContentType.php │ │ │ ├── ThreatAssessmentRequest.php │ │ │ ├── ThreatAssessmentRequestPivotProperty.php │ │ │ ├── ThreatAssessmentRequestSource.php │ │ │ ├── ThreatAssessmentRequestsCount.php │ │ │ ├── ThreatAssessmentResult.php │ │ │ ├── ThreatAssessmentResultType.php │ │ │ ├── ThreatAssessmentStatus.php │ │ │ ├── ThreatCategory.php │ │ │ ├── ThreatExpectedAssessment.php │ │ │ ├── Thumbnail.php │ │ │ ├── ThumbnailColumn.php │ │ │ ├── ThumbnailSet.php │ │ │ ├── TiAction.php │ │ │ ├── TiIndicator.php │ │ │ ├── TicketInfo.php │ │ │ ├── TimeCard.php │ │ │ ├── TimeCardBreak.php │ │ │ ├── TimeCardEntry.php │ │ │ ├── TimeCardEvent.php │ │ │ ├── TimeCardState.php │ │ │ ├── TimeClockSettings.php │ │ │ ├── TimeConstraint.php │ │ │ ├── TimeOff.php │ │ │ ├── TimeOffItem.php │ │ │ ├── TimeOffReason.php │ │ │ ├── TimeOffReasonIconType.php │ │ │ ├── TimeOffRequest.php │ │ │ ├── TimeRange.php │ │ │ ├── TimeSeriesParameter.php │ │ │ ├── TimeSlot.php │ │ │ ├── TimeZoneBase.php │ │ │ ├── TimeZoneInformation.php │ │ │ ├── TimeZoneStandard.php │ │ │ ├── TitleArea.php │ │ │ ├── TitleAreaLayoutType.php │ │ │ ├── TitleAreaTextAlignmentType.php │ │ │ ├── TlpLevel.php │ │ │ ├── Todo.php │ │ │ ├── TodoTask.php │ │ │ ├── TodoTaskList.php │ │ │ ├── TokenIssuancePolicy.php │ │ │ ├── TokenIssuerType.php │ │ │ ├── TokenLifetimePolicy.php │ │ │ ├── TokenMeetingInfo.php │ │ │ ├── Tone.php │ │ │ ├── ToneInfo.php │ │ │ ├── TooManyGlobalAdminsAssignedToTenantAlertConfiguration.php │ │ │ ├── TooManyGlobalAdminsAssignedToTenantAlertIncident.php │ │ │ ├── TrainingEventsContent.php │ │ │ ├── TrainingStatus.php │ │ │ ├── TranslationBehavior.php │ │ │ ├── TranslationLanguageOverride.php │ │ │ ├── TranslationPreferences.php │ │ │ ├── Trending.php │ │ │ ├── TrustFramework.php │ │ │ ├── TrustFrameworkKey.php │ │ │ ├── TrustFrameworkKeySet.php │ │ │ ├── TrustFrameworkPolicy.php │ │ │ ├── TypedEmailAddress.php │ │ │ ├── UnifiedRbacApplication.php │ │ │ ├── UnifiedRbacResourceAction.php │ │ │ ├── UnifiedRbacResourceNamespace.php │ │ │ ├── UnifiedRbacResourceScope.php │ │ │ ├── UnifiedRole.php │ │ │ ├── UnifiedRoleAssignment.php │ │ │ ├── UnifiedRoleAssignmentMultiple.php │ │ │ ├── UnifiedRoleAssignmentSchedule.php │ │ │ ├── UnifiedRoleAssignmentScheduleInstance.php │ │ │ ├── UnifiedRoleAssignmentScheduleRequest.php │ │ │ ├── UnifiedRoleDefinition.php │ │ │ ├── UnifiedRoleEligibilitySchedule.php │ │ │ ├── UnifiedRoleEligibilityScheduleInstance.php │ │ │ ├── UnifiedRoleEligibilityScheduleRequest.php │ │ │ ├── UnifiedRoleManagementAlert.php │ │ │ ├── UnifiedRoleManagementAlertConfiguration.php │ │ │ ├── UnifiedRoleManagementAlertDefinition.php │ │ │ ├── UnifiedRoleManagementAlertIncident.php │ │ │ ├── UnifiedRoleManagementPolicy.php │ │ │ ├── UnifiedRoleManagementPolicyApprovalRule.php │ │ │ ├── UnifiedRoleManagementPolicyAssignment.php │ │ │ ├── UnifiedRoleManagementPolicyAuthenticationContextRule.php │ │ │ ├── UnifiedRoleManagementPolicyEnablementRule.php │ │ │ ├── UnifiedRoleManagementPolicyExpirationRule.php │ │ │ ├── UnifiedRoleManagementPolicyNotificationRule.php │ │ │ ├── UnifiedRoleManagementPolicyRule.php │ │ │ ├── UnifiedRoleManagementPolicyRuleTarget.php │ │ │ ├── UnifiedRolePermission.php │ │ │ ├── UnifiedRoleScheduleBase.php │ │ │ ├── UnifiedRoleScheduleInstanceBase.php │ │ │ ├── UnitOfMeasure.php │ │ │ ├── UnmanagedDevice.php │ │ │ ├── UnmanagedDeviceDiscoveryTask.php │ │ │ ├── UnmuteParticipantOperation.php │ │ │ ├── UnsupportedDeviceConfiguration.php │ │ │ ├── UnsupportedDeviceConfigurationDetail.php │ │ │ ├── UnsupportedGroupPolicyExtension.php │ │ │ ├── UpdateAllowedCombinationsResult.php │ │ │ ├── UpdateClassification.php │ │ │ ├── UpdateRecordingStatusOperation.php │ │ │ ├── UpdateWindow.php │ │ │ ├── UpdateWindowsDeviceAccountActionParameter.php │ │ │ ├── UploadSession.php │ │ │ ├── UriClickSecurityState.php │ │ │ ├── UrlAssessmentRequest.php │ │ │ ├── UsageAuthMethod.php │ │ │ ├── UsageDetails.php │ │ │ ├── UsageRight.php │ │ │ ├── UsageRightState.php │ │ │ ├── UsedInsight.php │ │ │ ├── User.php │ │ │ ├── UserAccount.php │ │ │ ├── UserAccountInformation.php │ │ │ ├── UserAccountSecurityType.php │ │ │ ├── UserActivity.php │ │ │ ├── UserAnalytics.php │ │ │ ├── UserAppInstallStatus.php │ │ │ ├── UserAttributeValuesItem.php │ │ │ ├── UserConfiguration.php │ │ │ ├── UserConsentRequest.php │ │ │ ├── UserCredentialUsageDetails.php │ │ │ ├── UserEmailSource.php │ │ │ ├── UserExperienceAnalyticsAnomaly.php │ │ │ ├── UserExperienceAnalyticsAnomalyDevice.php │ │ │ ├── UserExperienceAnalyticsAnomalySeverity.php │ │ │ ├── UserExperienceAnalyticsAnomalySeverityOverview.php │ │ │ ├── UserExperienceAnalyticsAnomalyState.php │ │ │ ├── UserExperienceAnalyticsAnomalyType.php │ │ │ ├── UserExperienceAnalyticsAppHealthAppPerformanceByAppVersion.php │ │ │ ├── UserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails.php │ │ │ ├── UserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId.php │ │ │ ├── UserExperienceAnalyticsAppHealthAppPerformanceByOSVersion.php │ │ │ ├── UserExperienceAnalyticsAppHealthApplicationPerformance.php │ │ │ ├── UserExperienceAnalyticsAppHealthDeviceModelPerformance.php │ │ │ ├── UserExperienceAnalyticsAppHealthDevicePerformance.php │ │ │ ├── UserExperienceAnalyticsAppHealthDevicePerformanceDetails.php │ │ │ ├── UserExperienceAnalyticsAppHealthOSVersionPerformance.php │ │ │ ├── UserExperienceAnalyticsAutopilotDevicesSummary.php │ │ │ ├── UserExperienceAnalyticsBaseline.php │ │ │ ├── UserExperienceAnalyticsBatteryHealthAppImpact.php │ │ │ ├── UserExperienceAnalyticsBatteryHealthCapacityDetails.php │ │ │ ├── UserExperienceAnalyticsBatteryHealthDeviceAppImpact.php │ │ │ ├── UserExperienceAnalyticsBatteryHealthDevicePerformance.php │ │ │ ├── UserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory.php │ │ │ ├── UserExperienceAnalyticsBatteryHealthModelPerformance.php │ │ │ ├── UserExperienceAnalyticsBatteryHealthOsPerformance.php │ │ │ ├── UserExperienceAnalyticsBatteryHealthRuntimeDetails.php │ │ │ ├── UserExperienceAnalyticsCategory.php │ │ │ ├── UserExperienceAnalyticsCloudIdentityDevicesSummary.php │ │ │ ├── UserExperienceAnalyticsCloudManagementDevicesSummary.php │ │ │ ├── UserExperienceAnalyticsDevicePerformance.php │ │ │ ├── UserExperienceAnalyticsDeviceScope.php │ │ │ ├── UserExperienceAnalyticsDeviceScopeSummary.php │ │ │ ├── UserExperienceAnalyticsDeviceScores.php │ │ │ ├── UserExperienceAnalyticsDeviceStartupHistory.php │ │ │ ├── UserExperienceAnalyticsDeviceStartupProcess.php │ │ │ ├── UserExperienceAnalyticsDeviceStartupProcessPerformance.php │ │ │ ├── UserExperienceAnalyticsDeviceTimelineEvent.php │ │ │ ├── UserExperienceAnalyticsDeviceWithoutCloudIdentity.php │ │ │ ├── UserExperienceAnalyticsHealthState.php │ │ │ ├── UserExperienceAnalyticsImpactingProcess.php │ │ │ ├── UserExperienceAnalyticsInsight.php │ │ │ ├── UserExperienceAnalyticsInsightSeverity.php │ │ │ ├── UserExperienceAnalyticsInsightValue.php │ │ │ ├── UserExperienceAnalyticsMetric.php │ │ │ ├── UserExperienceAnalyticsMetricHistory.php │ │ │ ├── UserExperienceAnalyticsModelScores.php │ │ │ ├── UserExperienceAnalyticsNotAutopilotReadyDevice.php │ │ │ ├── UserExperienceAnalyticsOperatingSystemRestartCategory.php │ │ │ ├── UserExperienceAnalyticsOverview.php │ │ │ ├── UserExperienceAnalyticsRemoteConnection.php │ │ │ ├── UserExperienceAnalyticsResourcePerformance.php │ │ │ ├── UserExperienceAnalyticsScoreHistory.php │ │ │ ├── UserExperienceAnalyticsSettings.php │ │ │ ├── UserExperienceAnalyticsSummarizedBy.php │ │ │ ├── UserExperienceAnalyticsWindows10DevicesSummary.php │ │ │ ├── UserExperienceAnalyticsWorkFromAnywhereDevice.php │ │ │ ├── UserExperienceAnalyticsWorkFromAnywhereDevicesSummary.php │ │ │ ├── UserExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric.php │ │ │ ├── UserExperienceAnalyticsWorkFromAnywhereMetric.php │ │ │ ├── UserExperienceAnalyticsWorkFromAnywhereModelPerformance.php │ │ │ ├── UserFlowApiConnectorConfiguration.php │ │ │ ├── UserFlowLanguageConfiguration.php │ │ │ ├── UserFlowLanguagePage.php │ │ │ ├── UserFlowType.php │ │ │ ├── UserGovernanceCriteria.php │ │ │ ├── UserIdentity.php │ │ │ ├── UserInsightsSettings.php │ │ │ ├── UserInstallStateSummary.php │ │ │ ├── UserLastSignInRecommendationInsightSetting.php │ │ │ ├── UserNewMessageRestriction.php │ │ │ ├── UserPFXCertificate.php │ │ │ ├── UserPfxIntendedPurpose.php │ │ │ ├── UserPfxPaddingScheme.php │ │ │ ├── UserPrint.php │ │ │ ├── UserPrintUsageSummary.php │ │ │ ├── UserPurpose.php │ │ │ ├── UserRegistrationCount.php │ │ │ ├── UserRegistrationDetails.php │ │ │ ├── UserRegistrationFeatureCount.php │ │ │ ├── UserRegistrationFeatureSummary.php │ │ │ ├── UserRegistrationMethodCount.php │ │ │ ├── UserRegistrationMethodSummary.php │ │ │ ├── UserScopeTeamsAppInstallation.php │ │ │ ├── UserSecurityProfile.php │ │ │ ├── UserSecurityState.php │ │ │ ├── UserSet.php │ │ │ ├── UserSettings.php │ │ │ ├── UserSignInInsight.php │ │ │ ├── UserSignInRecommendationScope.php │ │ │ ├── UserSimulationDetails.php │ │ │ ├── UserSimulationEventInfo.php │ │ │ ├── UserTeamwork.php │ │ │ ├── UserTrainingContentEventInfo.php │ │ │ ├── UserTrainingEventInfo.php │ │ │ ├── UserTrainingStatusInfo.php │ │ │ ├── UsernameSource.php │ │ │ ├── ValidationResult.php │ │ │ ├── Vendor.php │ │ │ ├── VerifiableCredentialPresentationStatusCode.php │ │ │ ├── VerifiableCredentialRequired.php │ │ │ ├── VerifiableCredentialRequirementStatus.php │ │ │ ├── VerifiableCredentialRetrieved.php │ │ │ ├── VerifiableCredentialSettings.php │ │ │ ├── VerifiableCredentialType.php │ │ │ ├── VerifiableCredentialVerified.php │ │ │ ├── VerificationResult.php │ │ │ ├── VerifiedCredentialClaims.php │ │ │ ├── VerifiedCredentialData.php │ │ │ ├── VerifiedCustomDomainCertificatesMetadata.php │ │ │ ├── VerifiedDomain.php │ │ │ ├── VerifiedPublisher.php │ │ │ ├── VersionAction.php │ │ │ ├── VerticalSection.php │ │ │ ├── Video.php │ │ │ ├── VirtualAppointment.php │ │ │ ├── VirtualAppointmentSettings.php │ │ │ ├── VirtualAppointmentUser.php │ │ │ ├── VirtualEndpoint.php │ │ │ ├── VisibilitySetting.php │ │ │ ├── VisualInfo.php │ │ │ ├── VisualProperties.php │ │ │ ├── VoiceAuthenticationMethodConfiguration.php │ │ │ ├── VoiceAuthenticationMethodTarget.php │ │ │ ├── VolumeType.php │ │ │ ├── VpnAuthenticationMethod.php │ │ │ ├── VpnClientAuthenticationType.php │ │ │ ├── VpnConfiguration.php │ │ │ ├── VpnDeadPeerDetectionRate.php │ │ │ ├── VpnDnsRule.php │ │ │ ├── VpnEncryptionAlgorithmType.php │ │ │ ├── VpnIntegrityAlgorithmType.php │ │ │ ├── VpnLocalIdentifier.php │ │ │ ├── VpnOnDemandRule.php │ │ │ ├── VpnOnDemandRuleConnectionAction.php │ │ │ ├── VpnOnDemandRuleConnectionDomainAction.php │ │ │ ├── VpnOnDemandRuleInterfaceTypeMatch.php │ │ │ ├── VpnProviderType.php │ │ │ ├── VpnProxyServer.php │ │ │ ├── VpnRoute.php │ │ │ ├── VpnServer.php │ │ │ ├── VpnServerCertificateType.php │ │ │ ├── VpnServiceExceptionAction.php │ │ │ ├── VpnTrafficDirection.php │ │ │ ├── VpnTrafficRule.php │ │ │ ├── VpnTrafficRuleAppType.php │ │ │ ├── VpnTrafficRuleRoutingPolicyType.php │ │ │ ├── VpnTunnelConfigurationType.php │ │ │ ├── VppLicensingType.php │ │ │ ├── VppToken.php │ │ │ ├── VppTokenAccountType.php │ │ │ ├── VppTokenActionFailureReason.php │ │ │ ├── VppTokenActionResult.php │ │ │ ├── VppTokenLicenseSummary.php │ │ │ ├── VppTokenRevokeLicensesActionResult.php │ │ │ ├── VppTokenState.php │ │ │ ├── VppTokenSyncStatus.php │ │ │ ├── VulnerabilityState.php │ │ │ ├── VulnerableManagedDevice.php │ │ │ ├── WarrantyOffer.php │ │ │ ├── WarrantyType.php │ │ │ ├── WatermarkLayout.php │ │ │ ├── WatermarkProtectionValues.php │ │ │ ├── WeakAlgorithms.php │ │ │ ├── WebAccount.php │ │ │ ├── WebApp.php │ │ │ ├── WebApplication.php │ │ │ ├── WebApplicationSegment.php │ │ │ ├── WebBrowserCookieSettings.php │ │ │ ├── WebPart.php │ │ │ ├── WebPartData.php │ │ │ ├── WebPartPosition.php │ │ │ ├── WebSegmentConfiguration.php │ │ │ ├── Website.php │ │ │ ├── WebsiteType.php │ │ │ ├── WeekIndex.php │ │ │ ├── WeeklySchedule.php │ │ │ ├── WelcomeScreenMeetingInformation.php │ │ │ ├── WellknownListName.php │ │ │ ├── WiFiAuthenticationMethod.php │ │ │ ├── WiFiProxySetting.php │ │ │ ├── WiFiSecurityType.php │ │ │ ├── WifiAuthenticationType.php │ │ │ ├── Win32LobApp.php │ │ │ ├── Win32LobAppAssignmentSettings.php │ │ │ ├── Win32LobAppDeliveryOptimizationPriority.php │ │ │ ├── Win32LobAppDetection.php │ │ │ ├── Win32LobAppDetectionOperator.php │ │ │ ├── Win32LobAppFileSystemDetection.php │ │ │ ├── Win32LobAppFileSystemDetectionType.php │ │ │ ├── Win32LobAppFileSystemOperationType.php │ │ │ ├── Win32LobAppFileSystemRequirement.php │ │ │ ├── Win32LobAppFileSystemRule.php │ │ │ ├── Win32LobAppInstallExperience.php │ │ │ ├── Win32LobAppMsiInformation.php │ │ │ ├── Win32LobAppMsiPackageType.php │ │ │ ├── Win32LobAppNotification.php │ │ │ ├── Win32LobAppPowerShellScriptDetection.php │ │ │ ├── Win32LobAppPowerShellScriptDetectionType.php │ │ │ ├── Win32LobAppPowerShellScriptRequirement.php │ │ │ ├── Win32LobAppPowerShellScriptRule.php │ │ │ ├── Win32LobAppPowerShellScriptRuleOperationType.php │ │ │ ├── Win32LobAppProductCodeDetection.php │ │ │ ├── Win32LobAppProductCodeRule.php │ │ │ ├── Win32LobAppRegistryDetection.php │ │ │ ├── Win32LobAppRegistryDetectionType.php │ │ │ ├── Win32LobAppRegistryRequirement.php │ │ │ ├── Win32LobAppRegistryRule.php │ │ │ ├── Win32LobAppRegistryRuleOperationType.php │ │ │ ├── Win32LobAppRequirement.php │ │ │ ├── Win32LobAppRestartBehavior.php │ │ │ ├── Win32LobAppRestartSettings.php │ │ │ ├── Win32LobAppReturnCode.php │ │ │ ├── Win32LobAppReturnCodeType.php │ │ │ ├── Win32LobAppRule.php │ │ │ ├── Win32LobAppRuleOperator.php │ │ │ ├── Win32LobAppRuleType.php │ │ │ ├── WinGetApp.php │ │ │ ├── WinGetAppAssignmentSettings.php │ │ │ ├── WinGetAppInstallExperience.php │ │ │ ├── WinGetAppInstallTimeSettings.php │ │ │ ├── WinGetAppNotification.php │ │ │ ├── WinGetAppRestartSettings.php │ │ │ ├── Windows10AppType.php │ │ │ ├── Windows10AppsForceUpdateSchedule.php │ │ │ ├── Windows10AppsUpdateRecurrence.php │ │ │ ├── Windows10AssociatedApps.php │ │ │ ├── Windows10CertificateProfileBase.php │ │ │ ├── Windows10CompliancePolicy.php │ │ │ ├── Windows10CustomConfiguration.php │ │ │ ├── Windows10DeviceFirmwareConfigurationInterface.php │ │ │ ├── Windows10DeviceModeType.php │ │ │ ├── Windows10EasEmailProfileConfiguration.php │ │ │ ├── Windows10EditionType.php │ │ │ ├── Windows10EndpointProtectionConfiguration.php │ │ │ ├── Windows10EnrollmentCompletionPageConfiguration.php │ │ │ ├── Windows10EnrollmentCompletionPageConfigurationPolicySetItem.php │ │ │ ├── Windows10EnterpriseModernAppManagementConfiguration.php │ │ │ ├── Windows10GeneralConfiguration.php │ │ │ ├── Windows10ImportedPFXCertificateProfile.php │ │ │ ├── Windows10MobileCompliancePolicy.php │ │ │ ├── Windows10NetworkBoundaryConfiguration.php │ │ │ ├── Windows10NetworkProxyServer.php │ │ │ ├── Windows10PFXImportCertificateProfile.php │ │ │ ├── Windows10PkcsCertificateProfile.php │ │ │ ├── Windows10SecureAssessmentConfiguration.php │ │ │ ├── Windows10TeamGeneralConfiguration.php │ │ │ ├── Windows10VpnAuthenticationMethod.php │ │ │ ├── Windows10VpnConfiguration.php │ │ │ ├── Windows10VpnConnectionType.php │ │ │ ├── Windows10VpnProfileTarget.php │ │ │ ├── Windows10VpnProxyServer.php │ │ │ ├── Windows10XCertificateProfile.php │ │ │ ├── Windows10XCustomSubjectAlternativeName.php │ │ │ ├── Windows10XSCEPCertificateProfile.php │ │ │ ├── Windows10XTrustedRootCertificate.php │ │ │ ├── Windows10XVpnConfiguration.php │ │ │ ├── Windows10XWifiConfiguration.php │ │ │ ├── Windows81CertificateProfileBase.php │ │ │ ├── Windows81CompliancePolicy.php │ │ │ ├── Windows81GeneralConfiguration.php │ │ │ ├── Windows81SCEPCertificateProfile.php │ │ │ ├── Windows81TrustedRootCertificate.php │ │ │ ├── Windows81VpnConfiguration.php │ │ │ ├── Windows81VpnProxyServer.php │ │ │ ├── Windows81WifiImportConfiguration.php │ │ │ ├── WindowsAppIdentifier.php │ │ │ ├── WindowsAppStartLayoutTileSize.php │ │ │ ├── WindowsAppX.php │ │ │ ├── WindowsAppXAppAssignmentSettings.php │ │ │ ├── WindowsApplication.php │ │ │ ├── WindowsArchitecture.php │ │ │ ├── WindowsAssignedAccessProfile.php │ │ │ ├── WindowsAutopilotDeploymentProfile.php │ │ │ ├── WindowsAutopilotDeploymentProfileAssignment.php │ │ │ ├── WindowsAutopilotDeploymentProfilePolicySetItem.php │ │ │ ├── WindowsAutopilotDeploymentState.php │ │ │ ├── WindowsAutopilotDeviceIdentity.php │ │ │ ├── WindowsAutopilotDeviceRemediationState.php │ │ │ ├── WindowsAutopilotDeviceType.php │ │ │ ├── WindowsAutopilotEnrollmentType.php │ │ │ ├── WindowsAutopilotProfileAssignmentDetailedStatus.php │ │ │ ├── WindowsAutopilotProfileAssignmentStatus.php │ │ │ ├── WindowsAutopilotSettings.php │ │ │ ├── WindowsAutopilotSyncStatus.php │ │ │ ├── WindowsCertificateProfileBase.php │ │ │ ├── WindowsDefenderAdvancedThreatProtectionConfiguration.php │ │ │ ├── WindowsDefenderApplicationControlSupplementalPolicy.php │ │ │ ├── WindowsDefenderApplicationControlSupplementalPolicyAssignment.php │ │ │ ├── WindowsDefenderApplicationControlSupplementalPolicyDeploymentStatus.php │ │ │ ├── WindowsDefenderApplicationControlSupplementalPolicyDeploymentSummary.php │ │ │ ├── WindowsDefenderApplicationControlSupplementalPolicyStatuses.php │ │ │ ├── WindowsDefenderProductStatus.php │ │ │ ├── WindowsDefenderScanActionResult.php │ │ │ ├── WindowsDefenderTamperProtectionOptions.php │ │ │ ├── WindowsDeliveryOptimizationConfiguration.php │ │ │ ├── WindowsDeliveryOptimizationMode.php │ │ │ ├── WindowsDeviceADAccount.php │ │ │ ├── WindowsDeviceAccount.php │ │ │ ├── WindowsDeviceAzureADAccount.php │ │ │ ├── WindowsDeviceHealthState.php │ │ │ ├── WindowsDeviceMalwareState.php │ │ │ ├── WindowsDeviceType.php │ │ │ ├── WindowsDeviceUsageType.php │ │ │ ├── WindowsDomainJoinConfiguration.php │ │ │ ├── WindowsDriverUpdateInventory.php │ │ │ ├── WindowsDriverUpdateProfile.php │ │ │ ├── WindowsDriverUpdateProfileAssignment.php │ │ │ ├── WindowsDriverUpdateProfileInventorySyncState.php │ │ │ ├── WindowsDriverUpdateProfileInventorySyncStatus.php │ │ │ ├── WindowsEdgeKioskType.php │ │ │ ├── WindowsEnrollmentStatusScreenSettings.php │ │ │ ├── WindowsFeatureUpdateCatalogItem.php │ │ │ ├── WindowsFeatureUpdateProfile.php │ │ │ ├── WindowsFeatureUpdateProfileAssignment.php │ │ │ ├── WindowsFirewallNetworkProfile.php │ │ │ ├── WindowsFirewallRule.php │ │ │ ├── WindowsFirewallRuleInterfaceTypes.php │ │ │ ├── WindowsFirewallRuleNetworkProfileTypes.php │ │ │ ├── WindowsFirewallRuleTrafficDirectionType.php │ │ │ ├── WindowsHealthMonitoringConfiguration.php │ │ │ ├── WindowsHealthMonitoringScope.php │ │ │ ├── WindowsHelloForBusinessAuthenticationMethod.php │ │ │ ├── WindowsHelloForBusinessPinUsage.php │ │ │ ├── WindowsIdentityProtectionConfiguration.php │ │ │ ├── WindowsInformationProtection.php │ │ │ ├── WindowsInformationProtectionApp.php │ │ │ ├── WindowsInformationProtectionAppLearningSummary.php │ │ │ ├── WindowsInformationProtectionAppLockerFile.php │ │ │ ├── WindowsInformationProtectionDataRecoveryCertificate.php │ │ │ ├── WindowsInformationProtectionDesktopApp.php │ │ │ ├── WindowsInformationProtectionDeviceRegistration.php │ │ │ ├── WindowsInformationProtectionEnforcementLevel.php │ │ │ ├── WindowsInformationProtectionIPRangeCollection.php │ │ │ ├── WindowsInformationProtectionNetworkLearningSummary.php │ │ │ ├── WindowsInformationProtectionPinCharacterRequirements.php │ │ │ ├── WindowsInformationProtectionPolicy.php │ │ │ ├── WindowsInformationProtectionProxiedDomainCollection.php │ │ │ ├── WindowsInformationProtectionResourceCollection.php │ │ │ ├── WindowsInformationProtectionStoreApp.php │ │ │ ├── WindowsInformationProtectionWipeAction.php │ │ │ ├── WindowsKioskActiveDirectoryGroup.php │ │ │ ├── WindowsKioskAppBase.php │ │ │ ├── WindowsKioskAppConfiguration.php │ │ │ ├── WindowsKioskAppType.php │ │ │ ├── WindowsKioskAutologon.php │ │ │ ├── WindowsKioskAzureADGroup.php │ │ │ ├── WindowsKioskAzureADUser.php │ │ │ ├── WindowsKioskConfiguration.php │ │ │ ├── WindowsKioskDesktopApp.php │ │ │ ├── WindowsKioskForceUpdateSchedule.php │ │ │ ├── WindowsKioskLocalGroup.php │ │ │ ├── WindowsKioskLocalUser.php │ │ │ ├── WindowsKioskMultipleApps.php │ │ │ ├── WindowsKioskProfile.php │ │ │ ├── WindowsKioskSingleUWPApp.php │ │ │ ├── WindowsKioskSingleWin32App.php │ │ │ ├── WindowsKioskUWPApp.php │ │ │ ├── WindowsKioskUser.php │ │ │ ├── WindowsKioskVisitor.php │ │ │ ├── WindowsKioskWin32App.php │ │ │ ├── WindowsMalwareCategory.php │ │ │ ├── WindowsMalwareCategoryCount.php │ │ │ ├── WindowsMalwareExecutionState.php │ │ │ ├── WindowsMalwareExecutionStateCount.php │ │ │ ├── WindowsMalwareInformation.php │ │ │ ├── WindowsMalwareNameCount.php │ │ │ ├── WindowsMalwareOverview.php │ │ │ ├── WindowsMalwareSeverity.php │ │ │ ├── WindowsMalwareSeverityCount.php │ │ │ ├── WindowsMalwareState.php │ │ │ ├── WindowsMalwareStateCount.php │ │ │ ├── WindowsMalwareThreatState.php │ │ │ ├── WindowsManagedAppClipboardSharingLevel.php │ │ │ ├── WindowsManagedAppDataTransferLevel.php │ │ │ ├── WindowsManagedAppProtection.php │ │ │ ├── WindowsManagedDevice.php │ │ │ ├── WindowsManagementApp.php │ │ │ ├── WindowsManagementAppHealthState.php │ │ │ ├── WindowsManagementAppHealthSummary.php │ │ │ ├── WindowsMicrosoftEdgeApp.php │ │ │ ├── WindowsMinimumOperatingSystem.php │ │ │ ├── WindowsMobileMSI.php │ │ │ ├── WindowsNetworkIsolationPolicy.php │ │ │ ├── WindowsPackageInformation.php │ │ │ ├── WindowsPhone81AppX.php │ │ │ ├── WindowsPhone81AppXBundle.php │ │ │ ├── WindowsPhone81CertificateProfileBase.php │ │ │ ├── WindowsPhone81CompliancePolicy.php │ │ │ ├── WindowsPhone81CustomConfiguration.php │ │ │ ├── WindowsPhone81GeneralConfiguration.php │ │ │ ├── WindowsPhone81ImportedPFXCertificateProfile.php │ │ │ ├── WindowsPhone81SCEPCertificateProfile.php │ │ │ ├── WindowsPhone81StoreApp.php │ │ │ ├── WindowsPhone81TrustedRootCertificate.php │ │ │ ├── WindowsPhone81VpnConfiguration.php │ │ │ ├── WindowsPhoneEASEmailProfileConfiguration.php │ │ │ ├── WindowsPhoneXAP.php │ │ │ ├── WindowsPrivacyDataAccessControlItem.php │ │ │ ├── WindowsPrivacyDataAccessLevel.php │ │ │ ├── WindowsPrivacyDataCategory.php │ │ │ ├── WindowsProtectionState.php │ │ │ ├── WindowsQualityUpdateCatalogItem.php │ │ │ ├── WindowsQualityUpdateClassification.php │ │ │ ├── WindowsQualityUpdateProfile.php │ │ │ ├── WindowsQualityUpdateProfileAssignment.php │ │ │ ├── WindowsSModeConfiguration.php │ │ │ ├── WindowsSpotlightEnablementSettings.php │ │ │ ├── WindowsStartMenuAppListVisibilityType.php │ │ │ ├── WindowsStartMenuModeType.php │ │ │ ├── WindowsStoreApp.php │ │ │ ├── WindowsUniversalAppX.php │ │ │ ├── WindowsUniversalAppXAppAssignmentSettings.php │ │ │ ├── WindowsUniversalAppXContainedApp.php │ │ │ ├── WindowsUpdateActiveHoursInstall.php │ │ │ ├── WindowsUpdateCatalogItem.php │ │ │ ├── WindowsUpdateForBusinessConfiguration.php │ │ │ ├── WindowsUpdateForBusinessUpdateWeeks.php │ │ │ ├── WindowsUpdateInstallScheduleType.php │ │ │ ├── WindowsUpdateNotificationDisplayOption.php │ │ │ ├── WindowsUpdateRolloutSettings.php │ │ │ ├── WindowsUpdateScheduledInstall.php │ │ │ ├── WindowsUpdateState.php │ │ │ ├── WindowsUpdateStatus.php │ │ │ ├── WindowsUpdateType.php │ │ │ ├── WindowsUserAccountControlSettings.php │ │ │ ├── WindowsUserType.php │ │ │ ├── WindowsVpnConfiguration.php │ │ │ ├── WindowsVpnConnectionType.php │ │ │ ├── WindowsWebApp.php │ │ │ ├── WindowsWifiConfiguration.php │ │ │ ├── WindowsWifiEnterpriseEAPConfiguration.php │ │ │ ├── WindowsWiredNetworkConfiguration.php │ │ │ ├── WiredNetworkAuthenticationMethod.php │ │ │ ├── WiredNetworkAuthenticationType.php │ │ │ ├── WiredNetworkInterface.php │ │ │ ├── WorkPosition.php │ │ │ ├── Workbook.php │ │ │ ├── WorkbookApplication.php │ │ │ ├── WorkbookChart.php │ │ │ ├── WorkbookChartAreaFormat.php │ │ │ ├── WorkbookChartAxes.php │ │ │ ├── WorkbookChartAxis.php │ │ │ ├── WorkbookChartAxisFormat.php │ │ │ ├── WorkbookChartAxisTitle.php │ │ │ ├── WorkbookChartAxisTitleFormat.php │ │ │ ├── WorkbookChartDataLabelFormat.php │ │ │ ├── WorkbookChartDataLabels.php │ │ │ ├── WorkbookChartFill.php │ │ │ ├── WorkbookChartFont.php │ │ │ ├── WorkbookChartGridlines.php │ │ │ ├── WorkbookChartGridlinesFormat.php │ │ │ ├── WorkbookChartLegend.php │ │ │ ├── WorkbookChartLegendFormat.php │ │ │ ├── WorkbookChartLineFormat.php │ │ │ ├── WorkbookChartPoint.php │ │ │ ├── WorkbookChartPointFormat.php │ │ │ ├── WorkbookChartSeries.php │ │ │ ├── WorkbookChartSeriesFormat.php │ │ │ ├── WorkbookChartTitle.php │ │ │ ├── WorkbookChartTitleFormat.php │ │ │ ├── WorkbookComment.php │ │ │ ├── WorkbookCommentReply.php │ │ │ ├── WorkbookFilter.php │ │ │ ├── WorkbookFilterCriteria.php │ │ │ ├── WorkbookFilterDatetime.php │ │ │ ├── WorkbookFormatProtection.php │ │ │ ├── WorkbookFunctionResult.php │ │ │ ├── WorkbookFunctions.php │ │ │ ├── WorkbookIcon.php │ │ │ ├── WorkbookNamedItem.php │ │ │ ├── WorkbookOperation.php │ │ │ ├── WorkbookOperationError.php │ │ │ ├── WorkbookOperationStatus.php │ │ │ ├── WorkbookPivotTable.php │ │ │ ├── WorkbookRange.php │ │ │ ├── WorkbookRangeBorder.php │ │ │ ├── WorkbookRangeFill.php │ │ │ ├── WorkbookRangeFont.php │ │ │ ├── WorkbookRangeFormat.php │ │ │ ├── WorkbookRangeReference.php │ │ │ ├── WorkbookRangeSort.php │ │ │ ├── WorkbookRangeView.php │ │ │ ├── WorkbookSessionInfo.php │ │ │ ├── WorkbookSortField.php │ │ │ ├── WorkbookTable.php │ │ │ ├── WorkbookTableColumn.php │ │ │ ├── WorkbookTableRow.php │ │ │ ├── WorkbookTableSort.php │ │ │ ├── WorkbookWorksheet.php │ │ │ ├── WorkbookWorksheetProtection.php │ │ │ ├── WorkbookWorksheetProtectionOptions.php │ │ │ ├── WorkforceIntegration.php │ │ │ ├── WorkforceIntegrationEncryption.php │ │ │ ├── WorkforceIntegrationEncryptionProtocol.php │ │ │ ├── WorkforceIntegrationSupportedEntities.php │ │ │ ├── WorkingHours.php │ │ │ ├── Workspace.php │ │ │ ├── WritebackConfiguration.php │ │ │ ├── X509CertificateAuthenticationMethodConfiguration.php │ │ │ ├── X509CertificateAuthenticationMode.php │ │ │ ├── X509CertificateAuthenticationModeConfiguration.php │ │ │ ├── X509CertificateRule.php │ │ │ ├── X509CertificateRuleType.php │ │ │ ├── X509CertificateUserBinding.php │ │ │ ├── ZebraFotaArtifact.php │ │ │ ├── ZebraFotaConnector.php │ │ │ ├── ZebraFotaConnectorState.php │ │ │ ├── ZebraFotaDeployment.php │ │ │ ├── ZebraFotaDeploymentSettings.php │ │ │ ├── ZebraFotaDeploymentState.php │ │ │ ├── ZebraFotaDeploymentStatus.php │ │ │ ├── ZebraFotaErrorCode.php │ │ │ ├── ZebraFotaNetworkType.php │ │ │ ├── ZebraFotaScheduleMode.php │ │ │ └── ZebraFotaUpdateType.php │ │ │ ├── Search │ │ │ └── Model │ │ │ │ ├── Acronym.php │ │ │ │ ├── AnswerKeyword.php │ │ │ │ ├── AnswerState.php │ │ │ │ ├── AnswerVariant.php │ │ │ │ ├── Bookmark.php │ │ │ │ ├── Identity.php │ │ │ │ ├── IdentitySet.php │ │ │ │ ├── Qna.php │ │ │ │ └── SearchAnswer.php │ │ │ ├── SecurityNamespace │ │ │ └── Model │ │ │ │ ├── ActionAfterRetentionPeriod.php │ │ │ │ ├── ActionSource.php │ │ │ │ ├── AddContentFooterAction.php │ │ │ │ ├── AddContentHeaderAction.php │ │ │ │ ├── AddWatermarkAction.php │ │ │ │ ├── AdditionalDataOptions.php │ │ │ │ ├── Alert.php │ │ │ │ ├── AlertClassification.php │ │ │ │ ├── AlertComment.php │ │ │ │ ├── AlertDetermination.php │ │ │ │ ├── AlertEvidence.php │ │ │ │ ├── AlertSeverity.php │ │ │ │ ├── AlertStatus.php │ │ │ │ ├── AnalyzedMessageEvidence.php │ │ │ │ ├── ApplyLabelAction.php │ │ │ │ ├── Article.php │ │ │ │ ├── ArticleIndicator.php │ │ │ │ ├── Artifact.php │ │ │ │ ├── AssignmentMethod.php │ │ │ │ ├── AttackSimulationInfo.php │ │ │ │ ├── AutonomousSystem.php │ │ │ │ ├── BehaviorDuringRetentionPeriod.php │ │ │ │ ├── BufferDecryptionResult.php │ │ │ │ ├── BufferEncryptionResult.php │ │ │ │ ├── CaseAction.php │ │ │ │ ├── CaseOperation.php │ │ │ │ ├── CaseOperationStatus.php │ │ │ │ ├── CaseStatus.php │ │ │ │ ├── CasesRoot.php │ │ │ │ ├── ChildSelectability.php │ │ │ │ ├── ClassificationResult.php │ │ │ │ ├── CloudApplicationEvidence.php │ │ │ │ ├── ContentAlignment.php │ │ │ │ ├── ContentFormat.php │ │ │ │ ├── ContentInfo.php │ │ │ │ ├── ContentLabel.php │ │ │ │ ├── ContentState.php │ │ │ │ ├── CustomAction.php │ │ │ │ ├── CvssSummary.php │ │ │ │ ├── DataSet.php │ │ │ │ ├── DataSource.php │ │ │ │ ├── DataSourceContainer.php │ │ │ │ ├── DataSourceContainerStatus.php │ │ │ │ ├── DataSourceHoldStatus.php │ │ │ │ ├── DataSourceScopes.php │ │ │ │ ├── DefaultRecordBehavior.php │ │ │ │ ├── DefenderAvStatus.php │ │ │ │ ├── DetectionSource.php │ │ │ │ ├── DetectionStatus.php │ │ │ │ ├── DeviceEvidence.php │ │ │ │ ├── DeviceHealthStatus.php │ │ │ │ ├── DeviceRiskScore.php │ │ │ │ ├── DispositionReviewStage.php │ │ │ │ ├── DowngradeJustification.php │ │ │ │ ├── EdiscoveryAddToReviewSetOperation.php │ │ │ │ ├── EdiscoveryCase.php │ │ │ │ ├── EdiscoveryCaseSettings.php │ │ │ │ ├── EdiscoveryCustodian.php │ │ │ │ ├── EdiscoveryEstimateOperation.php │ │ │ │ ├── EdiscoveryExportOperation.php │ │ │ │ ├── EdiscoveryFile.php │ │ │ │ ├── EdiscoveryHoldOperation.php │ │ │ │ ├── EdiscoveryHoldPolicy.php │ │ │ │ ├── EdiscoveryIndexOperation.php │ │ │ │ ├── EdiscoveryNoncustodialDataSource.php │ │ │ │ ├── EdiscoveryPurgeDataOperation.php │ │ │ │ ├── EdiscoveryReviewSet.php │ │ │ │ ├── EdiscoveryReviewSetQuery.php │ │ │ │ ├── EdiscoveryReviewTag.php │ │ │ │ ├── EdiscoverySearch.php │ │ │ │ ├── EdiscoveryTagOperation.php │ │ │ │ ├── EmailContentThreatSubmission.php │ │ │ │ ├── EmailSender.php │ │ │ │ ├── EmailThreatSubmission.php │ │ │ │ ├── EmailThreatSubmissionPolicy.php │ │ │ │ ├── EmailUrlThreatSubmission.php │ │ │ │ ├── EventPropagationResult.php │ │ │ │ ├── EventPropagationStatus.php │ │ │ │ ├── EventQuery.php │ │ │ │ ├── EventStatusType.php │ │ │ │ ├── EvidenceRemediationStatus.php │ │ │ │ ├── EvidenceRole.php │ │ │ │ ├── EvidenceVerdict.php │ │ │ │ ├── ExportFileMetadata.php │ │ │ │ ├── ExportFileStructure.php │ │ │ │ ├── ExportOptions.php │ │ │ │ ├── File.php │ │ │ │ ├── FileContentThreatSubmission.php │ │ │ │ ├── FileDetails.php │ │ │ │ ├── FileEvidence.php │ │ │ │ ├── FileProcessingStatus.php │ │ │ │ ├── FileThreatSubmission.php │ │ │ │ ├── FileUrlThreatSubmission.php │ │ │ │ ├── FormattedContent.php │ │ │ │ ├── GraphCase.php │ │ │ │ ├── Host.php │ │ │ │ ├── HostComponent.php │ │ │ │ ├── HostCookie.php │ │ │ │ ├── HostReputation.php │ │ │ │ ├── HostReputationClassification.php │ │ │ │ ├── HostReputationRule.php │ │ │ │ ├── HostReputationRuleSeverity.php │ │ │ │ ├── HostTracker.php │ │ │ │ ├── Hostname.php │ │ │ │ ├── HuntingQueryResults.php │ │ │ │ ├── HuntingRowResult.php │ │ │ │ ├── Hyperlink.php │ │ │ │ ├── Incident.php │ │ │ │ ├── IncidentStatus.php │ │ │ │ ├── Indicator.php │ │ │ │ ├── IndicatorSource.php │ │ │ │ ├── InformationProtection.php │ │ │ │ ├── InformationProtectionAction.php │ │ │ │ ├── InformationProtectionPolicySetting.php │ │ │ │ ├── IntelligenceProfile.php │ │ │ │ ├── IntelligenceProfileIndicator.php │ │ │ │ ├── IntelligenceProfileKind.php │ │ │ │ ├── IntelligenceProfileSponsorState.php │ │ │ │ ├── IpAddress.php │ │ │ │ ├── IpEvidence.php │ │ │ │ ├── JustifyAction.php │ │ │ │ ├── KeyValuePair.php │ │ │ │ ├── LabelingOptions.php │ │ │ │ ├── LabelsRoot.php │ │ │ │ ├── LoggedOnUser.php │ │ │ │ ├── LongRunningOperationStatus.php │ │ │ │ ├── MailClusterEvidence.php │ │ │ │ ├── MailboxEvidence.php │ │ │ │ ├── MetadataAction.php │ │ │ │ ├── OauthApplicationEvidence.php │ │ │ │ ├── OcrSettings.php │ │ │ │ ├── OnboardingStatus.php │ │ │ │ ├── PassiveDnsRecord.php │ │ │ │ ├── PolicyBase.php │ │ │ │ ├── PolicyStatus.php │ │ │ │ ├── ProcessEvidence.php │ │ │ │ ├── ProtectAdhocAction.php │ │ │ │ ├── ProtectByTemplateAction.php │ │ │ │ ├── ProtectDoNotForwardAction.php │ │ │ │ ├── PurgeAreas.php │ │ │ │ ├── PurgeType.php │ │ │ │ ├── QueryType.php │ │ │ │ ├── RecommendLabelAction.php │ │ │ │ ├── RecommendedHuntingQuery.php │ │ │ │ ├── RedundancyDetectionSettings.php │ │ │ │ ├── RegistryKeyEvidence.php │ │ │ │ ├── RegistryValueEvidence.php │ │ │ │ ├── RemoveContentFooterAction.php │ │ │ │ ├── RemoveContentHeaderAction.php │ │ │ │ ├── RemoveProtectionAction.php │ │ │ │ ├── RemoveWatermarkAction.php │ │ │ │ ├── RetentionDuration.php │ │ │ │ ├── RetentionDurationForever.php │ │ │ │ ├── RetentionDurationInDays.php │ │ │ │ ├── RetentionEvent.php │ │ │ │ ├── RetentionEventStatus.php │ │ │ │ ├── RetentionEventType.php │ │ │ │ ├── RetentionLabel.php │ │ │ │ ├── RetentionTrigger.php │ │ │ │ ├── Search.php │ │ │ │ ├── Security.php │ │ │ │ ├── SecurityGroupEvidence.php │ │ │ │ ├── SensitivityLabel.php │ │ │ │ ├── ServiceSource.php │ │ │ │ ├── SigningResult.php │ │ │ │ ├── SinglePropertySchema.php │ │ │ │ ├── SiteSource.php │ │ │ │ ├── SourceType.php │ │ │ │ ├── StringValueDictionary.php │ │ │ │ ├── SubmissionAdminReview.php │ │ │ │ ├── SubmissionCategory.php │ │ │ │ ├── SubmissionClientSource.php │ │ │ │ ├── SubmissionContentType.php │ │ │ │ ├── SubmissionDetectedFile.php │ │ │ │ ├── SubmissionResult.php │ │ │ │ ├── SubmissionResultCategory.php │ │ │ │ ├── SubmissionResultDetail.php │ │ │ │ ├── SubmissionSource.php │ │ │ │ ├── SubmissionUserIdentity.php │ │ │ │ ├── Tag.php │ │ │ │ ├── TenantAllowBlockListAction.php │ │ │ │ ├── TenantAllowBlockListEntryResult.php │ │ │ │ ├── TenantAllowBlockListEntryType.php │ │ │ │ ├── TenantAllowOrBlockListAction.php │ │ │ │ ├── ThreatIntelligence.php │ │ │ │ ├── ThreatSubmission.php │ │ │ │ ├── ThreatSubmissionRoot.php │ │ │ │ ├── TopicModelingSettings.php │ │ │ │ ├── TriggerTypesRoot.php │ │ │ │ ├── TriggersRoot.php │ │ │ │ ├── UnclassifiedArtifact.php │ │ │ │ ├── UnifiedGroupSource.php │ │ │ │ ├── UrlEvidence.php │ │ │ │ ├── UrlThreatSubmission.php │ │ │ │ ├── UserAccount.php │ │ │ │ ├── UserEvidence.php │ │ │ │ ├── UserMailboxSetting.php │ │ │ │ ├── UserSource.php │ │ │ │ ├── VerificationResult.php │ │ │ │ ├── VmCloudProvider.php │ │ │ │ ├── VmMetadata.php │ │ │ │ ├── Vulnerability.php │ │ │ │ ├── VulnerabilityComponent.php │ │ │ │ ├── VulnerabilitySeverity.php │ │ │ │ └── WatermarkLayout.php │ │ │ ├── TermStore │ │ │ └── Model │ │ │ │ ├── Group.php │ │ │ │ ├── LocalizedDescription.php │ │ │ │ ├── LocalizedLabel.php │ │ │ │ ├── LocalizedName.php │ │ │ │ ├── Relation.php │ │ │ │ ├── RelationType.php │ │ │ │ ├── Set.php │ │ │ │ ├── Store.php │ │ │ │ ├── Term.php │ │ │ │ └── TermGroupScope.php │ │ │ └── WindowsUpdates │ │ │ └── Model │ │ │ ├── ApplicableContent.php │ │ │ ├── ApplicableContentDeviceMatch.php │ │ │ ├── AzureADDevice.php │ │ │ ├── AzureADDeviceRegistrationError.php │ │ │ ├── AzureADDeviceRegistrationErrorReason.php │ │ │ ├── Catalog.php │ │ │ ├── CatalogContent.php │ │ │ ├── CatalogEntry.php │ │ │ ├── ComplianceChange.php │ │ │ ├── ComplianceChangeRule.php │ │ │ ├── ContentApplicabilitySettings.php │ │ │ ├── ContentApproval.php │ │ │ ├── ContentApprovalRule.php │ │ │ ├── ContentFilter.php │ │ │ ├── DateDrivenRolloutSettings.php │ │ │ ├── DeployableContent.php │ │ │ ├── Deployment.php │ │ │ ├── DeploymentAudience.php │ │ │ ├── DeploymentSettings.php │ │ │ ├── DeploymentState.php │ │ │ ├── DeploymentStateReason.php │ │ │ ├── DeploymentStateReasonValue.php │ │ │ ├── DeploymentStateValue.php │ │ │ ├── DriverUpdateCatalogEntry.php │ │ │ ├── DriverUpdateFilter.php │ │ │ ├── DurationDrivenRolloutSettings.php │ │ │ ├── ExpediteSettings.php │ │ │ ├── FeatureUpdateCatalogEntry.php │ │ │ ├── GradualRolloutSettings.php │ │ │ ├── MonitoringAction.php │ │ │ ├── MonitoringRule.php │ │ │ ├── MonitoringSettings.php │ │ │ ├── MonitoringSignal.php │ │ │ ├── OperationalInsightsConnection.php │ │ │ ├── QualityUpdateCatalogEntry.php │ │ │ ├── QualityUpdateClassification.php │ │ │ ├── RateDrivenRolloutSettings.php │ │ │ ├── RequestedDeploymentStateValue.php │ │ │ ├── ResourceConnection.php │ │ │ ├── ResourceConnectionState.php │ │ │ ├── SafeguardCategory.php │ │ │ ├── SafeguardProfile.php │ │ │ ├── SafeguardSettings.php │ │ │ ├── ScheduleSettings.php │ │ │ ├── SoftwareUpdateCatalogEntry.php │ │ │ ├── SoftwareUpdateFilter.php │ │ │ ├── UpdatableAsset.php │ │ │ ├── UpdatableAssetEnrollment.php │ │ │ ├── UpdatableAssetError.php │ │ │ ├── UpdatableAssetGroup.php │ │ │ ├── UpdateCategory.php │ │ │ ├── UpdateManagementEnrollment.php │ │ │ ├── UpdatePolicy.php │ │ │ ├── UserExperienceSettings.php │ │ │ └── WindowsUpdateFilter.php │ ├── CallRecords │ │ └── Model │ │ │ ├── AudioCodec.php │ │ │ ├── CallRecord.php │ │ │ ├── CallType.php │ │ │ ├── ClientPlatform.php │ │ │ ├── ClientUserAgent.php │ │ │ ├── DeviceInfo.php │ │ │ ├── DirectRoutingLogRow.php │ │ │ ├── Endpoint.php │ │ │ ├── FailureInfo.php │ │ │ ├── FailureStage.php │ │ │ ├── FeedbackTokenSet.php │ │ │ ├── Media.php │ │ │ ├── MediaStream.php │ │ │ ├── MediaStreamDirection.php │ │ │ ├── Modality.php │ │ │ ├── NetworkConnectionType.php │ │ │ ├── NetworkInfo.php │ │ │ ├── NetworkTransportProtocol.php │ │ │ ├── ParticipantEndpoint.php │ │ │ ├── ProductFamily.php │ │ │ ├── PstnCallDurationSource.php │ │ │ ├── PstnCallLogRow.php │ │ │ ├── Segment.php │ │ │ ├── ServiceEndpoint.php │ │ │ ├── ServiceRole.php │ │ │ ├── ServiceUserAgent.php │ │ │ ├── Session.php │ │ │ ├── TraceRouteHop.php │ │ │ ├── UserAgent.php │ │ │ ├── UserFeedback.php │ │ │ ├── UserFeedbackRating.php │ │ │ ├── VideoCodec.php │ │ │ ├── WifiBand.php │ │ │ └── WifiRadioType.php │ ├── Core │ │ ├── Enum.php │ │ ├── ExceptionWrapper.php │ │ └── GraphConstants.php │ ├── Exception │ │ └── GraphException.php │ ├── ExternalConnectors │ │ └── Model │ │ │ ├── AccessType.php │ │ │ ├── Acl.php │ │ │ ├── AclType.php │ │ │ ├── ActivitySettings.php │ │ │ ├── Configuration.php │ │ │ ├── ConnectionOperation.php │ │ │ ├── ConnectionOperationStatus.php │ │ │ ├── ConnectionState.php │ │ │ ├── DisplayTemplate.php │ │ │ ├── External.php │ │ │ ├── ExternalActivity.php │ │ │ ├── ExternalActivityResult.php │ │ │ ├── ExternalActivityType.php │ │ │ ├── ExternalConnection.php │ │ │ ├── ExternalGroup.php │ │ │ ├── ExternalItem.php │ │ │ ├── ExternalItemContent.php │ │ │ ├── ExternalItemContentType.php │ │ │ ├── Identity.php │ │ │ ├── IdentityType.php │ │ │ ├── ItemIdResolver.php │ │ │ ├── Label.php │ │ │ ├── Properties.php │ │ │ ├── Property.php │ │ │ ├── PropertyRule.php │ │ │ ├── PropertyType.php │ │ │ ├── RuleOperation.php │ │ │ ├── Schema.php │ │ │ ├── SearchSettings.php │ │ │ ├── UrlMatchInfo.php │ │ │ └── UrlToItemResolverBase.php │ ├── Graph.php │ ├── Http │ │ ├── GraphCollectionRequest.php │ │ ├── GraphRequest.php │ │ └── GraphResponse.php │ ├── Model │ │ ├── AadUserConversationMember.php │ │ ├── AadUserConversationMemberResult.php │ │ ├── AadUserNotificationRecipient.php │ │ ├── AcceptJoinResponse.php │ │ ├── AccessAction.php │ │ ├── AccessPackage.php │ │ ├── AccessPackageAnswer.php │ │ ├── AccessPackageAnswerChoice.php │ │ ├── AccessPackageAnswerString.php │ │ ├── AccessPackageApprovalStage.php │ │ ├── AccessPackageAssignment.php │ │ ├── AccessPackageAssignmentApprovalSettings.php │ │ ├── AccessPackageAssignmentFilterByCurrentUserOptions.php │ │ ├── AccessPackageAssignmentPolicy.php │ │ ├── AccessPackageAssignmentRequest.php │ │ ├── AccessPackageAssignmentRequestFilterByCurrentUserOptions.php │ │ ├── AccessPackageAssignmentRequestRequirements.php │ │ ├── AccessPackageAssignmentRequestorSettings.php │ │ ├── AccessPackageAssignmentReviewSettings.php │ │ ├── AccessPackageAssignmentState.php │ │ ├── AccessPackageAutomaticRequestSettings.php │ │ ├── AccessPackageCatalog.php │ │ ├── AccessPackageCatalogState.php │ │ ├── AccessPackageCatalogType.php │ │ ├── AccessPackageExternalUserLifecycleAction.php │ │ ├── AccessPackageFilterByCurrentUserOptions.php │ │ ├── AccessPackageLocalizedText.php │ │ ├── AccessPackageMultipleChoiceQuestion.php │ │ ├── AccessPackageQuestion.php │ │ ├── AccessPackageRequestState.php │ │ ├── AccessPackageRequestType.php │ │ ├── AccessPackageSubject.php │ │ ├── AccessPackageSubjectType.php │ │ ├── AccessPackageTextInputQuestion.php │ │ ├── AccessReviewApplyAction.php │ │ ├── AccessReviewExpirationBehavior.php │ │ ├── AccessReviewHistoryDecisionFilter.php │ │ ├── AccessReviewHistoryDefinition.php │ │ ├── AccessReviewHistoryInstance.php │ │ ├── AccessReviewHistoryScheduleSettings.php │ │ ├── AccessReviewHistoryStatus.php │ │ ├── AccessReviewInactiveUsersQueryScope.php │ │ ├── AccessReviewInstance.php │ │ ├── AccessReviewInstanceDecisionItem.php │ │ ├── AccessReviewInstanceDecisionItemAccessPackageAssignmentPolicyResource.php │ │ ├── AccessReviewInstanceDecisionItemAzureRoleResource.php │ │ ├── AccessReviewInstanceDecisionItemFilterByCurrentUserOptions.php │ │ ├── AccessReviewInstanceDecisionItemResource.php │ │ ├── AccessReviewInstanceDecisionItemServicePrincipalResource.php │ │ ├── AccessReviewInstanceFilterByCurrentUserOptions.php │ │ ├── AccessReviewNotificationRecipientItem.php │ │ ├── AccessReviewNotificationRecipientQueryScope.php │ │ ├── AccessReviewNotificationRecipientScope.php │ │ ├── AccessReviewQueryScope.php │ │ ├── AccessReviewReviewer.php │ │ ├── AccessReviewReviewerScope.php │ │ ├── AccessReviewScheduleDefinition.php │ │ ├── AccessReviewScheduleDefinitionFilterByCurrentUserOptions.php │ │ ├── AccessReviewScheduleSettings.php │ │ ├── AccessReviewScope.php │ │ ├── AccessReviewSet.php │ │ ├── AccessReviewStage.php │ │ ├── AccessReviewStageFilterByCurrentUserOptions.php │ │ ├── AccessReviewStageSettings.php │ │ ├── ActionResultPart.php │ │ ├── ActionState.php │ │ ├── ActivityBasedTimeoutPolicy.php │ │ ├── ActivityDomain.php │ │ ├── ActivityHistoryItem.php │ │ ├── ActivityType.php │ │ ├── AddIn.php │ │ ├── AddLargeGalleryViewOperation.php │ │ ├── Admin.php │ │ ├── AdminConsentRequestPolicy.php │ │ ├── AdministrativeUnit.php │ │ ├── AdvancedConfigState.php │ │ ├── AggregationOption.php │ │ ├── Agreement.php │ │ ├── AgreementAcceptance.php │ │ ├── AgreementAcceptanceState.php │ │ ├── AgreementFile.php │ │ ├── AgreementFileData.php │ │ ├── AgreementFileLocalization.php │ │ ├── AgreementFileProperties.php │ │ ├── AgreementFileVersion.php │ │ ├── Album.php │ │ ├── Alert.php │ │ ├── AlertDetection.php │ │ ├── AlertFeedback.php │ │ ├── AlertHistoryState.php │ │ ├── AlertSeverity.php │ │ ├── AlertStatus.php │ │ ├── AlertTrigger.php │ │ ├── AllDevicesAssignmentTarget.php │ │ ├── AllLicensedUsersAssignmentTarget.php │ │ ├── AllowInvitesFrom.php │ │ ├── AllowedTargetScope.php │ │ ├── AllowedValue.php │ │ ├── AlterationResponse.php │ │ ├── AlteredQueryToken.php │ │ ├── AlternativeSecurityId.php │ │ ├── AndroidCompliancePolicy.php │ │ ├── AndroidCustomConfiguration.php │ │ ├── AndroidGeneralDeviceConfiguration.php │ │ ├── AndroidLobApp.php │ │ ├── AndroidManagedAppProtection.php │ │ ├── AndroidManagedAppRegistration.php │ │ ├── AndroidMinimumOperatingSystem.php │ │ ├── AndroidMobileAppIdentifier.php │ │ ├── AndroidRequiredPasswordType.php │ │ ├── AndroidStoreApp.php │ │ ├── AndroidWorkProfileCompliancePolicy.php │ │ ├── AndroidWorkProfileCrossProfileDataSharingType.php │ │ ├── AndroidWorkProfileCustomConfiguration.php │ │ ├── AndroidWorkProfileDefaultAppPermissionPolicyType.php │ │ ├── AndroidWorkProfileGeneralDeviceConfiguration.php │ │ ├── AndroidWorkProfileRequiredPasswordType.php │ │ ├── AnonymousGuestConversationMember.php │ │ ├── AnswerInputType.php │ │ ├── ApiApplication.php │ │ ├── ApiAuthenticationConfigurationBase.php │ │ ├── AppCatalogs.php │ │ ├── AppConfigurationSettingItem.php │ │ ├── AppConsentApprovalRoute.php │ │ ├── AppConsentRequest.php │ │ ├── AppConsentRequestScope.php │ │ ├── AppCredentialRestrictionType.php │ │ ├── AppHostedMediaConfig.php │ │ ├── AppIdentity.php │ │ ├── AppKeyCredentialRestrictionType.php │ │ ├── AppListItem.php │ │ ├── AppListType.php │ │ ├── AppLockerApplicationControlType.php │ │ ├── AppManagementConfiguration.php │ │ ├── AppManagementPolicy.php │ │ ├── AppRole.php │ │ ├── AppRoleAssignment.php │ │ ├── AppScope.php │ │ ├── AppleDeviceFeaturesConfigurationBase.php │ │ ├── AppleManagedIdentityProvider.php │ │ ├── ApplePushNotificationCertificate.php │ │ ├── Application.php │ │ ├── ApplicationEnforcedRestrictionsSessionControl.php │ │ ├── ApplicationGuardBlockClipboardSharingType.php │ │ ├── ApplicationGuardBlockFileTransferType.php │ │ ├── ApplicationServicePrincipal.php │ │ ├── ApplicationTemplate.php │ │ ├── ApplicationType.php │ │ ├── AppliedConditionalAccessPolicy.php │ │ ├── AppliedConditionalAccessPolicyResult.php │ │ ├── Approval.php │ │ ├── ApprovalFilterByCurrentUserOptions.php │ │ ├── ApprovalSettings.php │ │ ├── ApprovalStage.php │ │ ├── ArchivedPrintJob.php │ │ ├── AssignedLabel.php │ │ ├── AssignedLicense.php │ │ ├── AssignedPlan.php │ │ ├── AssignedTrainingInfo.php │ │ ├── AssignmentOrder.php │ │ ├── AssociatedTeamInfo.php │ │ ├── Attachment.php │ │ ├── AttachmentBase.php │ │ ├── AttachmentInfo.php │ │ ├── AttachmentItem.php │ │ ├── AttachmentSession.php │ │ ├── AttachmentType.php │ │ ├── AttackSimulationRepeatOffender.php │ │ ├── AttackSimulationRoot.php │ │ ├── AttackSimulationSimulationUserCoverage.php │ │ ├── AttackSimulationTrainingUserCoverage.php │ │ ├── AttackSimulationUser.php │ │ ├── AttendanceInterval.php │ │ ├── AttendanceRecord.php │ │ ├── Attendee.php │ │ ├── AttendeeAvailability.php │ │ ├── AttendeeBase.php │ │ ├── AttendeeType.php │ │ ├── AttestationLevel.php │ │ ├── AttributeRuleMembers.php │ │ ├── AttributeSet.php │ │ ├── Audio.php │ │ ├── AudioConferencing.php │ │ ├── AudioRoutingGroup.php │ │ ├── AuditActivityInitiator.php │ │ ├── AuditActor.php │ │ ├── AuditEvent.php │ │ ├── AuditLogRoot.php │ │ ├── AuditProperty.php │ │ ├── AuditResource.php │ │ ├── Authentication.php │ │ ├── AuthenticationCombinationConfiguration.php │ │ ├── AuthenticationContextClassReference.php │ │ ├── AuthenticationFlowsPolicy.php │ │ ├── AuthenticationMethod.php │ │ ├── AuthenticationMethodConfiguration.php │ │ ├── AuthenticationMethodFeatureConfiguration.php │ │ ├── AuthenticationMethodKeyStrength.php │ │ ├── AuthenticationMethodModeDetail.php │ │ ├── AuthenticationMethodModes.php │ │ ├── AuthenticationMethodSignInState.php │ │ ├── AuthenticationMethodState.php │ │ ├── AuthenticationMethodTarget.php │ │ ├── AuthenticationMethodTargetType.php │ │ ├── AuthenticationMethodsPolicy.php │ │ ├── AuthenticationMethodsPolicyMigrationState.php │ │ ├── AuthenticationMethodsRegistrationCampaign.php │ │ ├── AuthenticationMethodsRegistrationCampaignIncludeTarget.php │ │ ├── AuthenticationPhoneType.php │ │ ├── AuthenticationProtocol.php │ │ ├── AuthenticationStrengthPolicy.php │ │ ├── AuthenticationStrengthPolicyType.php │ │ ├── AuthenticationStrengthRequirements.php │ │ ├── AuthenticationStrengthRoot.php │ │ ├── AuthenticationStrengthUsage.php │ │ ├── AuthoredNote.php │ │ ├── AuthorizationInfo.php │ │ ├── AuthorizationPolicy.php │ │ ├── AutoRestartNotificationDismissalMethod.php │ │ ├── AutomaticRepliesMailTips.php │ │ ├── AutomaticRepliesSetting.php │ │ ├── AutomaticRepliesStatus.php │ │ ├── AutomaticUpdateMode.php │ │ ├── AvailabilityItem.php │ │ ├── AverageComparativeScore.php │ │ ├── AzureActiveDirectoryTenant.php │ │ ├── AzureCommunicationServicesUserConversationMember.php │ │ ├── B2xIdentityUserFlow.php │ │ ├── BaseAuthenticationMethod.php │ │ ├── BaseItem.php │ │ ├── BaseItemVersion.php │ │ ├── BasicAuthentication.php │ │ ├── BinaryOperator.php │ │ ├── BitLockerEncryptionMethod.php │ │ ├── BitLockerRemovableDrivePolicy.php │ │ ├── Bitlocker.php │ │ ├── BitlockerRecoveryKey.php │ │ ├── BodyType.php │ │ ├── BookingAppointment.php │ │ ├── BookingBusiness.php │ │ ├── BookingCurrency.php │ │ ├── BookingCustomQuestion.php │ │ ├── BookingCustomer.php │ │ ├── BookingCustomerBase.php │ │ ├── BookingCustomerInformation.php │ │ ├── BookingCustomerInformationBase.php │ │ ├── BookingPriceType.php │ │ ├── BookingQuestionAnswer.php │ │ ├── BookingQuestionAssignment.php │ │ ├── BookingReminder.php │ │ ├── BookingReminderRecipients.php │ │ ├── BookingSchedulingPolicy.php │ │ ├── BookingService.php │ │ ├── BookingStaffMember.php │ │ ├── BookingStaffMemberBase.php │ │ ├── BookingStaffRole.php │ │ ├── BookingType.php │ │ ├── BookingWorkHours.php │ │ ├── BookingWorkTimeSlot.php │ │ ├── BookingsAvailabilityStatus.php │ │ ├── BooleanColumn.php │ │ ├── BroadcastMeetingAudience.php │ │ ├── BroadcastMeetingCaptionSettings.php │ │ ├── BroadcastMeetingSettings.php │ │ ├── BrowserSharedCookie.php │ │ ├── BrowserSharedCookieHistory.php │ │ ├── BrowserSharedCookieSourceEnvironment.php │ │ ├── BrowserSharedCookieStatus.php │ │ ├── BrowserSite.php │ │ ├── BrowserSiteCompatibilityMode.php │ │ ├── BrowserSiteHistory.php │ │ ├── BrowserSiteList.php │ │ ├── BrowserSiteListStatus.php │ │ ├── BrowserSiteMergeType.php │ │ ├── BrowserSiteStatus.php │ │ ├── BrowserSiteTargetEnvironment.php │ │ ├── BucketAggregationDefinition.php │ │ ├── BucketAggregationRange.php │ │ ├── BucketAggregationSortProperty.php │ │ ├── BuiltInIdentityProvider.php │ │ ├── Bundle.php │ │ ├── CalculatedColumn.php │ │ ├── Calendar.php │ │ ├── CalendarColor.php │ │ ├── CalendarGroup.php │ │ ├── CalendarPermission.php │ │ ├── CalendarRoleType.php │ │ ├── CalendarSharingAction.php │ │ ├── CalendarSharingActionImportance.php │ │ ├── CalendarSharingActionType.php │ │ ├── CalendarSharingMessage.php │ │ ├── CalendarSharingMessageAction.php │ │ ├── Call.php │ │ ├── CallDirection.php │ │ ├── CallEndedEventMessageDetail.php │ │ ├── CallMediaState.php │ │ ├── CallOptions.php │ │ ├── CallParticipantInfo.php │ │ ├── CallRecordingEventMessageDetail.php │ │ ├── CallRecordingStatus.php │ │ ├── CallRoute.php │ │ ├── CallStartedEventMessageDetail.php │ │ ├── CallState.php │ │ ├── CallTranscriptEventMessageDetail.php │ │ ├── CallTranscriptionInfo.php │ │ ├── CallTranscriptionState.php │ │ ├── CancelMediaProcessingOperation.php │ │ ├── CategoryColor.php │ │ ├── CertificateAuthority.php │ │ ├── CertificateBasedAuthConfiguration.php │ │ ├── CertificateStatus.php │ │ ├── Certification.php │ │ ├── CertificationControl.php │ │ ├── ChangeNotification.php │ │ ├── ChangeNotificationCollection.php │ │ ├── ChangeNotificationEncryptedContent.php │ │ ├── ChangeTrackedEntity.php │ │ ├── ChangeType.php │ │ ├── Channel.php │ │ ├── ChannelAddedEventMessageDetail.php │ │ ├── ChannelDeletedEventMessageDetail.php │ │ ├── ChannelDescriptionUpdatedEventMessageDetail.php │ │ ├── ChannelIdentity.php │ │ ├── ChannelMembersNotificationRecipient.php │ │ ├── ChannelMembershipType.php │ │ ├── ChannelRenamedEventMessageDetail.php │ │ ├── ChannelSetAsFavoriteByDefaultEventMessageDetail.php │ │ ├── ChannelUnsetAsFavoriteByDefaultEventMessageDetail.php │ │ ├── Chat.php │ │ ├── ChatInfo.php │ │ ├── ChatMembersNotificationRecipient.php │ │ ├── ChatMessage.php │ │ ├── ChatMessageActions.php │ │ ├── ChatMessageAttachment.php │ │ ├── ChatMessageFromIdentitySet.php │ │ ├── ChatMessageHistoryItem.php │ │ ├── ChatMessageHostedContent.php │ │ ├── ChatMessageImportance.php │ │ ├── ChatMessageInfo.php │ │ ├── ChatMessageMention.php │ │ ├── ChatMessageMentionedIdentitySet.php │ │ ├── ChatMessagePolicyViolation.php │ │ ├── ChatMessagePolicyViolationDlpActionTypes.php │ │ ├── ChatMessagePolicyViolationPolicyTip.php │ │ ├── ChatMessagePolicyViolationUserActionTypes.php │ │ ├── ChatMessagePolicyViolationVerdictDetailsTypes.php │ │ ├── ChatMessageReaction.php │ │ ├── ChatMessageReactionIdentitySet.php │ │ ├── ChatMessageType.php │ │ ├── ChatRenamedEventMessageDetail.php │ │ ├── ChatType.php │ │ ├── ChatViewpoint.php │ │ ├── ChecklistItem.php │ │ ├── ChoiceColumn.php │ │ ├── ClaimsMappingPolicy.php │ │ ├── ClientCertificateAuthentication.php │ │ ├── ClonableTeamParts.php │ │ ├── CloudAppSecuritySessionControl.php │ │ ├── CloudAppSecuritySessionControlType.php │ │ ├── CloudAppSecurityState.php │ │ ├── CloudCommunications.php │ │ ├── ColumnDefinition.php │ │ ├── ColumnLink.php │ │ ├── ColumnTypes.php │ │ ├── ColumnValidation.php │ │ ├── CommsNotification.php │ │ ├── CommsNotifications.php │ │ ├── CommsOperation.php │ │ ├── ComplexExtensionValue.php │ │ ├── Compliance.php │ │ ├── ComplianceInformation.php │ │ ├── ComplianceManagementPartner.php │ │ ├── ComplianceManagementPartnerAssignment.php │ │ ├── ComplianceState.php │ │ ├── ComplianceStatus.php │ │ ├── ConditionalAccessAllExternalTenants.php │ │ ├── ConditionalAccessApplications.php │ │ ├── ConditionalAccessClientApp.php │ │ ├── ConditionalAccessClientApplications.php │ │ ├── ConditionalAccessConditionSet.php │ │ ├── ConditionalAccessDevicePlatform.php │ │ ├── ConditionalAccessDevices.php │ │ ├── ConditionalAccessEnumeratedExternalTenants.php │ │ ├── ConditionalAccessExternalTenants.php │ │ ├── ConditionalAccessExternalTenantsMembershipKind.php │ │ ├── ConditionalAccessFilter.php │ │ ├── ConditionalAccessGrantControl.php │ │ ├── ConditionalAccessGrantControls.php │ │ ├── ConditionalAccessGuestOrExternalUserTypes.php │ │ ├── ConditionalAccessGuestsOrExternalUsers.php │ │ ├── ConditionalAccessLocations.php │ │ ├── ConditionalAccessPlatforms.php │ │ ├── ConditionalAccessPolicy.php │ │ ├── ConditionalAccessPolicyDetail.php │ │ ├── ConditionalAccessPolicyState.php │ │ ├── ConditionalAccessRoot.php │ │ ├── ConditionalAccessSessionControl.php │ │ ├── ConditionalAccessSessionControls.php │ │ ├── ConditionalAccessStatus.php │ │ ├── ConditionalAccessTemplate.php │ │ ├── ConditionalAccessUsers.php │ │ ├── ConfigurationManagerClientEnabledFeatures.php │ │ ├── ConfigurationManagerCollectionAssignmentTarget.php │ │ ├── ConnectedOrganization.php │ │ ├── ConnectedOrganizationMembers.php │ │ ├── ConnectedOrganizationState.php │ │ ├── ConnectionDirection.php │ │ ├── ConnectionInfo.php │ │ ├── ConnectionStatus.php │ │ ├── ConsentRequestFilterByCurrentUserOptions.php │ │ ├── Contact.php │ │ ├── ContactFolder.php │ │ ├── ContactRelationship.php │ │ ├── ContentApprovalStatusColumn.php │ │ ├── ContentSharingSession.php │ │ ├── ContentType.php │ │ ├── ContentTypeInfo.php │ │ ├── ContentTypeOrder.php │ │ ├── Contract.php │ │ ├── ControlScore.php │ │ ├── Conversation.php │ │ ├── ConversationMember.php │ │ ├── ConversationMemberRoleUpdatedEventMessageDetail.php │ │ ├── ConversationThread.php │ │ ├── ConvertIdResult.php │ │ ├── CopyNotebookModel.php │ │ ├── CountryLookupMethodType.php │ │ ├── CountryNamedLocation.php │ │ ├── CrossCloudAzureActiveDirectoryTenant.php │ │ ├── CrossTenantAccessPolicy.php │ │ ├── CrossTenantAccessPolicyB2BSetting.php │ │ ├── CrossTenantAccessPolicyConfigurationDefault.php │ │ ├── CrossTenantAccessPolicyConfigurationPartner.php │ │ ├── CrossTenantAccessPolicyInboundTrust.php │ │ ├── CrossTenantAccessPolicyTarget.php │ │ ├── CrossTenantAccessPolicyTargetConfiguration.php │ │ ├── CrossTenantAccessPolicyTargetConfigurationAccessType.php │ │ ├── CrossTenantAccessPolicyTargetType.php │ │ ├── CrossTenantIdentitySyncPolicyPartner.php │ │ ├── CrossTenantUserSyncInbound.php │ │ ├── CurrencyColumn.php │ │ ├── CustomSecurityAttributeDefinition.php │ │ ├── CustomTimeZone.php │ │ ├── DataPolicyOperation.php │ │ ├── DataPolicyOperationStatus.php │ │ ├── DataSubject.php │ │ ├── DataSubjectType.php │ │ ├── DateTimeColumn.php │ │ ├── DateTimeTimeZone.php │ │ ├── DayOfWeek.php │ │ ├── DaylightTimeZoneOffset.php │ │ ├── DefaultColumnValue.php │ │ ├── DefaultManagedAppProtection.php │ │ ├── DefaultUserRolePermissions.php │ │ ├── DefenderCloudBlockLevelType.php │ │ ├── DefenderDetectedMalwareActions.php │ │ ├── DefenderMonitorFileActivity.php │ │ ├── DefenderPromptForSampleSubmission.php │ │ ├── DefenderScanType.php │ │ ├── DefenderThreatAction.php │ │ ├── DelegateMeetingMessageDeliveryOptions.php │ │ ├── DelegatedAdminAccessAssignment.php │ │ ├── DelegatedAdminAccessAssignmentStatus.php │ │ ├── DelegatedAdminAccessContainer.php │ │ ├── DelegatedAdminAccessContainerType.php │ │ ├── DelegatedAdminAccessDetails.php │ │ ├── DelegatedAdminCustomer.php │ │ ├── DelegatedAdminRelationship.php │ │ ├── DelegatedAdminRelationshipCustomerParticipant.php │ │ ├── DelegatedAdminRelationshipOperation.php │ │ ├── DelegatedAdminRelationshipOperationType.php │ │ ├── DelegatedAdminRelationshipRequest.php │ │ ├── DelegatedAdminRelationshipRequestAction.php │ │ ├── DelegatedAdminRelationshipRequestStatus.php │ │ ├── DelegatedAdminRelationshipStatus.php │ │ ├── DelegatedAdminServiceManagementDetail.php │ │ ├── DelegatedPermissionClassification.php │ │ ├── DeleteUserFromSharedAppleDeviceActionResult.php │ │ ├── Deleted.php │ │ ├── DeletedTeam.php │ │ ├── DetailsInfo.php │ │ ├── DetectedApp.php │ │ ├── DetectedAppPlatformType.php │ │ ├── Device.php │ │ ├── DeviceActionResult.php │ │ ├── DeviceAndAppManagementAssignmentTarget.php │ │ ├── DeviceAndAppManagementData.php │ │ ├── DeviceAndAppManagementRoleAssignment.php │ │ ├── DeviceAndAppManagementRoleDefinition.php │ │ ├── DeviceAppManagement.php │ │ ├── DeviceCategory.php │ │ ├── DeviceComplianceActionItem.php │ │ ├── DeviceComplianceActionType.php │ │ ├── DeviceComplianceDeviceOverview.php │ │ ├── DeviceComplianceDeviceStatus.php │ │ ├── DeviceCompliancePolicy.php │ │ ├── DeviceCompliancePolicyAssignment.php │ │ ├── DeviceCompliancePolicyDeviceStateSummary.php │ │ ├── DeviceCompliancePolicySettingState.php │ │ ├── DeviceCompliancePolicySettingStateSummary.php │ │ ├── DeviceCompliancePolicyState.php │ │ ├── DeviceComplianceScheduledActionForRule.php │ │ ├── DeviceComplianceSettingState.php │ │ ├── DeviceComplianceUserOverview.php │ │ ├── DeviceComplianceUserStatus.php │ │ ├── DeviceConfiguration.php │ │ ├── DeviceConfigurationAssignment.php │ │ ├── DeviceConfigurationDeviceOverview.php │ │ ├── DeviceConfigurationDeviceStateSummary.php │ │ ├── DeviceConfigurationDeviceStatus.php │ │ ├── DeviceConfigurationSettingState.php │ │ ├── DeviceConfigurationState.php │ │ ├── DeviceConfigurationUserOverview.php │ │ ├── DeviceConfigurationUserStatus.php │ │ ├── DeviceDetail.php │ │ ├── DeviceEnrollmentConfiguration.php │ │ ├── DeviceEnrollmentFailureReason.php │ │ ├── DeviceEnrollmentLimitConfiguration.php │ │ ├── DeviceEnrollmentPlatformRestriction.php │ │ ├── DeviceEnrollmentPlatformRestrictionsConfiguration.php │ │ ├── DeviceEnrollmentType.php │ │ ├── DeviceEnrollmentWindowsHelloForBusinessConfiguration.php │ │ ├── DeviceExchangeAccessStateSummary.php │ │ ├── DeviceGeoLocation.php │ │ ├── DeviceHealthAttestationState.php │ │ ├── DeviceInstallState.php │ │ ├── DeviceManagement.php │ │ ├── DeviceManagementExchangeAccessState.php │ │ ├── DeviceManagementExchangeAccessStateReason.php │ │ ├── DeviceManagementExchangeConnector.php │ │ ├── DeviceManagementExchangeConnectorStatus.php │ │ ├── DeviceManagementExchangeConnectorSyncType.php │ │ ├── DeviceManagementExchangeConnectorType.php │ │ ├── DeviceManagementExportJob.php │ │ ├── DeviceManagementExportJobLocalizationType.php │ │ ├── DeviceManagementPartner.php │ │ ├── DeviceManagementPartnerAppType.php │ │ ├── DeviceManagementPartnerAssignment.php │ │ ├── DeviceManagementPartnerTenantState.php │ │ ├── DeviceManagementReportFileFormat.php │ │ ├── DeviceManagementReportStatus.php │ │ ├── DeviceManagementReports.php │ │ ├── DeviceManagementSettings.php │ │ ├── DeviceManagementSubscriptionState.php │ │ ├── DeviceManagementTroubleshootingEvent.php │ │ ├── DeviceOperatingSystemSummary.php │ │ ├── DeviceRegistrationState.php │ │ ├── DeviceThreatProtectionLevel.php │ │ ├── Diagnostic.php │ │ ├── DiagnosticDataSubmissionMode.php │ │ ├── Dictionary.php │ │ ├── Directory.php │ │ ├── DirectoryAudit.php │ │ ├── DirectoryObject.php │ │ ├── DirectoryObjectPartnerReference.php │ │ ├── DirectoryRole.php │ │ ├── DirectoryRoleTemplate.php │ │ ├── DisableAndDeleteUserApplyAction.php │ │ ├── DiskType.php │ │ ├── DisplayNameLocalization.php │ │ ├── DocumentSet.php │ │ ├── DocumentSetContent.php │ │ ├── DocumentSetVersion.php │ │ ├── DocumentSetVersionItem.php │ │ ├── Domain.php │ │ ├── DomainDnsCnameRecord.php │ │ ├── DomainDnsMxRecord.php │ │ ├── DomainDnsRecord.php │ │ ├── DomainDnsSrvRecord.php │ │ ├── DomainDnsTxtRecord.php │ │ ├── DomainDnsUnavailableRecord.php │ │ ├── DomainIdentitySource.php │ │ ├── DomainState.php │ │ ├── Drive.php │ │ ├── DriveItem.php │ │ ├── DriveItemUploadableProperties.php │ │ ├── DriveItemVersion.php │ │ ├── DriveRecipient.php │ │ ├── EBookInstallSummary.php │ │ ├── Edge.php │ │ ├── EdgeCookiePolicy.php │ │ ├── EdgeSearchEngine.php │ │ ├── EdgeSearchEngineBase.php │ │ ├── EdgeSearchEngineCustom.php │ │ ├── EdgeSearchEngineType.php │ │ ├── EditionUpgradeConfiguration.php │ │ ├── EditionUpgradeLicenseType.php │ │ ├── EducationAddToCalendarOptions.php │ │ ├── EducationAddedStudentAction.php │ │ ├── EducationAssignment.php │ │ ├── EducationAssignmentClassRecipient.php │ │ ├── EducationAssignmentDefaults.php │ │ ├── EducationAssignmentGrade.php │ │ ├── EducationAssignmentGradeType.php │ │ ├── EducationAssignmentGroupRecipient.php │ │ ├── EducationAssignmentIndividualRecipient.php │ │ ├── EducationAssignmentPointsGrade.php │ │ ├── EducationAssignmentPointsGradeType.php │ │ ├── EducationAssignmentRecipient.php │ │ ├── EducationAssignmentResource.php │ │ ├── EducationAssignmentSettings.php │ │ ├── EducationAssignmentStatus.php │ │ ├── EducationCategory.php │ │ ├── EducationClass.php │ │ ├── EducationCourse.php │ │ ├── EducationExcelResource.php │ │ ├── EducationExternalResource.php │ │ ├── EducationExternalSource.php │ │ ├── EducationFeedback.php │ │ ├── EducationFeedbackOutcome.php │ │ ├── EducationFeedbackResourceOutcome.php │ │ ├── EducationFeedbackResourceOutcomeStatus.php │ │ ├── EducationFileResource.php │ │ ├── EducationGender.php │ │ ├── EducationItemBody.php │ │ ├── EducationLinkResource.php │ │ ├── EducationMediaResource.php │ │ ├── EducationOnPremisesInfo.php │ │ ├── EducationOrganization.php │ │ ├── EducationOutcome.php │ │ ├── EducationPointsOutcome.php │ │ ├── EducationPowerPointResource.php │ │ ├── EducationResource.php │ │ ├── EducationRoot.php │ │ ├── EducationRubric.php │ │ ├── EducationRubricOutcome.php │ │ ├── EducationSchool.php │ │ ├── EducationStudent.php │ │ ├── EducationSubmission.php │ │ ├── EducationSubmissionIndividualRecipient.php │ │ ├── EducationSubmissionRecipient.php │ │ ├── EducationSubmissionResource.php │ │ ├── EducationSubmissionStatus.php │ │ ├── EducationTeacher.php │ │ ├── EducationTeamsAppResource.php │ │ ├── EducationTerm.php │ │ ├── EducationUser.php │ │ ├── EducationUserRole.php │ │ ├── EducationWordResource.php │ │ ├── EmailAddress.php │ │ ├── EmailAuthenticationMethod.php │ │ ├── EmailAuthenticationMethodConfiguration.php │ │ ├── EmailFileAssessmentRequest.php │ │ ├── EmailIdentity.php │ │ ├── EmailRole.php │ │ ├── EmployeeExperience.php │ │ ├── EmployeeOrgData.php │ │ ├── Enablement.php │ │ ├── Endpoint.php │ │ ├── EndpointType.php │ │ ├── EnrollmentConfigurationAssignment.php │ │ ├── EnrollmentState.php │ │ ├── EnrollmentTroubleshootingEvent.php │ │ ├── EnterpriseCodeSigningCertificate.php │ │ ├── EntitlementManagement.php │ │ ├── EntitlementManagementSchedule.php │ │ ├── EntitlementManagementSettings.php │ │ ├── Entity.php │ │ ├── EntityType.php │ │ ├── Event.php │ │ ├── EventMessage.php │ │ ├── EventMessageDetail.php │ │ ├── EventMessageRequest.php │ │ ├── EventMessageResponse.php │ │ ├── EventType.php │ │ ├── ExchangeIdFormat.php │ │ ├── ExcludeTarget.php │ │ ├── ExclusionGroupAssignmentTarget.php │ │ ├── ExpirationPattern.php │ │ ├── ExpirationPatternType.php │ │ ├── Extension.php │ │ ├── ExtensionProperty.php │ │ ├── ExtensionSchemaProperty.php │ │ ├── ExternalAudienceScope.php │ │ ├── ExternalDomainFederation.php │ │ ├── ExternalDomainName.php │ │ ├── ExternalEmailOtpState.php │ │ ├── ExternalLink.php │ │ ├── ExternalSponsors.php │ │ ├── FeatureRolloutPolicy.php │ │ ├── FeatureTarget.php │ │ ├── FeatureTargetType.php │ │ ├── FederatedIdentityCredential.php │ │ ├── FederatedIdpMfaBehavior.php │ │ ├── Fido2AuthenticationMethod.php │ │ ├── Fido2AuthenticationMethodConfiguration.php │ │ ├── Fido2CombinationConfiguration.php │ │ ├── Fido2KeyRestrictions.php │ │ ├── Fido2RestrictionEnforcementType.php │ │ ├── FieldValueSet.php │ │ ├── File.php │ │ ├── FileAssessmentRequest.php │ │ ├── FileAttachment.php │ │ ├── FileEncryptionInfo.php │ │ ├── FileHash.php │ │ ├── FileHashType.php │ │ ├── FileSecurityState.php │ │ ├── FileSystemInfo.php │ │ ├── FilterMode.php │ │ ├── FirewallCertificateRevocationListCheckMethodType.php │ │ ├── FirewallPacketQueueingMethodType.php │ │ ├── FirewallPreSharedKeyEncodingMethodType.php │ │ ├── Folder.php │ │ ├── FolderView.php │ │ ├── FollowupFlag.php │ │ ├── FollowupFlagStatus.php │ │ ├── FreeBusyError.php │ │ ├── FreeBusyStatus.php │ │ ├── GenericError.php │ │ ├── GeoCoordinates.php │ │ ├── GeolocationColumn.php │ │ ├── GiphyRatingType.php │ │ ├── GraphList.php │ │ ├── GraphPrint.php │ │ ├── Group.php │ │ ├── GroupAssignmentTarget.php │ │ ├── GroupLifecyclePolicy.php │ │ ├── GroupMembers.php │ │ ├── GroupSetting.php │ │ ├── GroupSettingTemplate.php │ │ ├── GroupType.php │ │ ├── Hashes.php │ │ ├── HomeRealmDiscoveryPolicy.php │ │ ├── HostSecurityState.php │ │ ├── HyperlinkOrPictureColumn.php │ │ ├── IPv4CidrRange.php │ │ ├── IPv4Range.php │ │ ├── IPv6CidrRange.php │ │ ├── IPv6Range.php │ │ ├── Identity.php │ │ ├── IdentityApiConnector.php │ │ ├── IdentityBuiltInUserFlowAttribute.php │ │ ├── IdentityContainer.php │ │ ├── IdentityCustomUserFlowAttribute.php │ │ ├── IdentityGovernance.php │ │ ├── IdentityProtectionRoot.php │ │ ├── IdentityProvider.php │ │ ├── IdentityProviderBase.php │ │ ├── IdentitySecurityDefaultsEnforcementPolicy.php │ │ ├── IdentitySet.php │ │ ├── IdentitySource.php │ │ ├── IdentityUserFlow.php │ │ ├── IdentityUserFlowAttribute.php │ │ ├── IdentityUserFlowAttributeAssignment.php │ │ ├── IdentityUserFlowAttributeDataType.php │ │ ├── IdentityUserFlowAttributeInputType.php │ │ ├── IdentityUserFlowAttributeType.php │ │ ├── IdleSessionSignOut.php │ │ ├── Image.php │ │ ├── ImageInfo.php │ │ ├── ImageTaggingChoice.php │ │ ├── ImplicitGrantSettings.php │ │ ├── Importance.php │ │ ├── ImportedWindowsAutopilotDeviceIdentity.php │ │ ├── ImportedWindowsAutopilotDeviceIdentityImportStatus.php │ │ ├── ImportedWindowsAutopilotDeviceIdentityState.php │ │ ├── ImportedWindowsAutopilotDeviceIdentityUpload.php │ │ ├── ImportedWindowsAutopilotDeviceIdentityUploadStatus.php │ │ ├── InboundOutboundPolicyConfiguration.php │ │ ├── IncomingCallOptions.php │ │ ├── IncomingContext.php │ │ ├── IncompleteData.php │ │ ├── InferenceClassification.php │ │ ├── InferenceClassificationOverride.php │ │ ├── InferenceClassificationType.php │ │ ├── InformationProtection.php │ │ ├── InformationalUrl.php │ │ ├── Initiator.php │ │ ├── InitiatorType.php │ │ ├── InsightIdentity.php │ │ ├── InstallIntent.php │ │ ├── InstallState.php │ │ ├── InstanceResourceAccess.php │ │ ├── IntegerRange.php │ │ ├── InternalDomainFederation.php │ │ ├── InternalSponsors.php │ │ ├── InternetExplorerMode.php │ │ ├── InternetMessageHeader.php │ │ ├── InternetSiteSecurityLevel.php │ │ ├── IntuneBrand.php │ │ ├── InvestigationSecurityState.php │ │ ├── Invitation.php │ │ ├── InvitationParticipantInfo.php │ │ ├── InviteNewBotResponse.php │ │ ├── InviteParticipantsOperation.php │ │ ├── InvitedUserMessageInfo.php │ │ ├── IosCertificateProfile.php │ │ ├── IosCompliancePolicy.php │ │ ├── IosCustomConfiguration.php │ │ ├── IosDeviceFeaturesConfiguration.php │ │ ├── IosDeviceType.php │ │ ├── IosGeneralDeviceConfiguration.php │ │ ├── IosHomeScreenApp.php │ │ ├── IosHomeScreenFolder.php │ │ ├── IosHomeScreenFolderPage.php │ │ ├── IosHomeScreenItem.php │ │ ├── IosHomeScreenPage.php │ │ ├── IosLobApp.php │ │ ├── IosLobAppAssignmentSettings.php │ │ ├── IosLobAppProvisioningConfigurationAssignment.php │ │ ├── IosManagedAppProtection.php │ │ ├── IosManagedAppRegistration.php │ │ ├── IosMinimumOperatingSystem.php │ │ ├── IosMobileAppConfiguration.php │ │ ├── IosMobileAppIdentifier.php │ │ ├── IosNetworkUsageRule.php │ │ ├── IosNotificationAlertType.php │ │ ├── IosNotificationSettings.php │ │ ├── IosStoreApp.php │ │ ├── IosStoreAppAssignmentSettings.php │ │ ├── IosUpdateConfiguration.php │ │ ├── IosUpdateDeviceStatus.php │ │ ├── IosUpdatesInstallStatus.php │ │ ├── IosVppApp.php │ │ ├── IosVppAppAssignmentSettings.php │ │ ├── IosVppEBook.php │ │ ├── IosVppEBookAssignment.php │ │ ├── IosiPadOSWebClip.php │ │ ├── IpNamedLocation.php │ │ ├── IpRange.php │ │ ├── ItemActionStat.php │ │ ├── ItemActivity.php │ │ ├── ItemActivityStat.php │ │ ├── ItemAnalytics.php │ │ ├── ItemAttachment.php │ │ ├── ItemBody.php │ │ ├── ItemPreviewInfo.php │ │ ├── ItemReference.php │ │ ├── JoinMeetingIdMeetingInfo.php │ │ ├── JoinMeetingIdSettings.php │ │ ├── KeyCredential.php │ │ ├── KeyCredentialConfiguration.php │ │ ├── KeyValue.php │ │ ├── KeyValuePair.php │ │ ├── LearningContent.php │ │ ├── LearningProvider.php │ │ ├── LicenseAssignmentState.php │ │ ├── LicenseDetails.php │ │ ├── LicenseProcessingState.php │ │ ├── LicenseUnitsDetail.php │ │ ├── LifecycleEventType.php │ │ ├── LinkedResource.php │ │ ├── ListInfo.php │ │ ├── ListItem.php │ │ ├── ListItemVersion.php │ │ ├── LobbyBypassScope.php │ │ ├── LobbyBypassSettings.php │ │ ├── LocaleInfo.php │ │ ├── LocalizedNotificationMessage.php │ │ ├── LocateDeviceActionResult.php │ │ ├── Location.php │ │ ├── LocationConstraint.php │ │ ├── LocationConstraintItem.php │ │ ├── LocationType.php │ │ ├── LocationUniqueIdType.php │ │ ├── LogonType.php │ │ ├── LongRunningOperation.php │ │ ├── LongRunningOperationStatus.php │ │ ├── LookupColumn.php │ │ ├── MacOSCompliancePolicy.php │ │ ├── MacOSCustomConfiguration.php │ │ ├── MacOSDeviceFeaturesConfiguration.php │ │ ├── MacOSGeneralDeviceConfiguration.php │ │ ├── MacOSLobApp.php │ │ ├── MacOSLobChildApp.php │ │ ├── MacOSMicrosoftEdgeApp.php │ │ ├── MacOSMinimumOperatingSystem.php │ │ ├── MacOSOfficeSuiteApp.php │ │ ├── MacOsLobAppAssignmentSettings.php │ │ ├── MailAssessmentRequest.php │ │ ├── MailDestinationRoutingReason.php │ │ ├── MailFolder.php │ │ ├── MailSearchFolder.php │ │ ├── MailTips.php │ │ ├── MailTipsError.php │ │ ├── MailTipsType.php │ │ ├── MailboxSettings.php │ │ ├── Malware.php │ │ ├── MalwareState.php │ │ ├── ManagedAndroidLobApp.php │ │ ├── ManagedAndroidStoreApp.php │ │ ├── ManagedApp.php │ │ ├── ManagedAppAvailability.php │ │ ├── ManagedAppClipboardSharingLevel.php │ │ ├── ManagedAppConfiguration.php │ │ ├── ManagedAppDataEncryptionType.php │ │ ├── ManagedAppDataStorageLocation.php │ │ ├── ManagedAppDataTransferLevel.php │ │ ├── ManagedAppDiagnosticStatus.php │ │ ├── ManagedAppFlaggedReason.php │ │ ├── ManagedAppOperation.php │ │ ├── ManagedAppPinCharacterSet.php │ │ ├── ManagedAppPolicy.php │ │ ├── ManagedAppPolicyDeploymentSummary.php │ │ ├── ManagedAppPolicyDeploymentSummaryPerApp.php │ │ ├── ManagedAppProtection.php │ │ ├── ManagedAppRegistration.php │ │ ├── ManagedAppStatus.php │ │ ├── ManagedAppStatusRaw.php │ │ ├── ManagedBrowserType.php │ │ ├── ManagedDevice.php │ │ ├── ManagedDeviceMobileAppConfiguration.php │ │ ├── ManagedDeviceMobileAppConfigurationAssignment.php │ │ ├── ManagedDeviceMobileAppConfigurationDeviceStatus.php │ │ ├── ManagedDeviceMobileAppConfigurationDeviceSummary.php │ │ ├── ManagedDeviceMobileAppConfigurationUserStatus.php │ │ ├── ManagedDeviceMobileAppConfigurationUserSummary.php │ │ ├── ManagedDeviceOverview.php │ │ ├── ManagedDeviceOwnerType.php │ │ ├── ManagedDevicePartnerReportedHealthState.php │ │ ├── ManagedEBook.php │ │ ├── ManagedEBookAssignment.php │ │ ├── ManagedIOSLobApp.php │ │ ├── ManagedIOSStoreApp.php │ │ ├── ManagedMobileApp.php │ │ ├── ManagedMobileLobApp.php │ │ ├── ManagementAgentType.php │ │ ├── MdmAppConfigKeyType.php │ │ ├── MdmAuthority.php │ │ ├── MdmWindowsInformationProtectionPolicy.php │ │ ├── MediaConfig.php │ │ ├── MediaContentRatingAustralia.php │ │ ├── MediaContentRatingCanada.php │ │ ├── MediaContentRatingFrance.php │ │ ├── MediaContentRatingGermany.php │ │ ├── MediaContentRatingIreland.php │ │ ├── MediaContentRatingJapan.php │ │ ├── MediaContentRatingNewZealand.php │ │ ├── MediaContentRatingUnitedKingdom.php │ │ ├── MediaContentRatingUnitedStates.php │ │ ├── MediaDirection.php │ │ ├── MediaInfo.php │ │ ├── MediaPrompt.php │ │ ├── MediaState.php │ │ ├── MediaStream.php │ │ ├── MeetingAttendanceReport.php │ │ ├── MeetingChatMode.php │ │ ├── MeetingInfo.php │ │ ├── MeetingMessageType.php │ │ ├── MeetingParticipantInfo.php │ │ ├── MeetingParticipants.php │ │ ├── MeetingPolicyUpdatedEventMessageDetail.php │ │ ├── MeetingRequestType.php │ │ ├── MeetingTimeSuggestion.php │ │ ├── MeetingTimeSuggestionsResult.php │ │ ├── MembersAddedEventMessageDetail.php │ │ ├── MembersDeletedEventMessageDetail.php │ │ ├── MembersJoinedEventMessageDetail.php │ │ ├── MembersLeftEventMessageDetail.php │ │ ├── Message.php │ │ ├── MessageActionFlag.php │ │ ├── MessagePinnedEventMessageDetail.php │ │ ├── MessageRule.php │ │ ├── MessageRuleActions.php │ │ ├── MessageRulePredicates.php │ │ ├── MessageSecurityState.php │ │ ├── MessageUnpinnedEventMessageDetail.php │ │ ├── MicrosoftAccountUserConversationMember.php │ │ ├── MicrosoftAuthenticatorAuthenticationMethod.php │ │ ├── MicrosoftAuthenticatorAuthenticationMethodConfiguration.php │ │ ├── MicrosoftAuthenticatorAuthenticationMethodTarget.php │ │ ├── MicrosoftAuthenticatorAuthenticationMode.php │ │ ├── MicrosoftAuthenticatorFeatureSettings.php │ │ ├── MicrosoftEdgeChannel.php │ │ ├── MicrosoftStoreForBusinessApp.php │ │ ├── MicrosoftStoreForBusinessAppAssignmentSettings.php │ │ ├── MicrosoftStoreForBusinessLicenseType.php │ │ ├── MimeContent.php │ │ ├── MiracastChannel.php │ │ ├── MobileApp.php │ │ ├── MobileAppAssignment.php │ │ ├── MobileAppAssignmentSettings.php │ │ ├── MobileAppCategory.php │ │ ├── MobileAppContent.php │ │ ├── MobileAppContentFile.php │ │ ├── MobileAppContentFileUploadState.php │ │ ├── MobileAppIdentifier.php │ │ ├── MobileAppInstallTimeSettings.php │ │ ├── MobileAppPublishingState.php │ │ ├── MobileContainedApp.php │ │ ├── MobileLobApp.php │ │ ├── MobileThreatDefenseConnector.php │ │ ├── MobileThreatPartnerTenantState.php │ │ ├── Modality.php │ │ ├── ModifiedProperty.php │ │ ├── MultiValueLegacyExtendedProperty.php │ │ ├── MuteParticipantOperation.php │ │ ├── NamedLocation.php │ │ ├── NetworkConnection.php │ │ ├── Notebook.php │ │ ├── NotebookLinks.php │ │ ├── NotificationMessageTemplate.php │ │ ├── NotificationTemplateBrandingOptions.php │ │ ├── NumberColumn.php │ │ ├── OAuth2PermissionGrant.php │ │ ├── ObjectIdentity.php │ │ ├── OfferShiftRequest.php │ │ ├── OfficeGraphInsights.php │ │ ├── OmaSetting.php │ │ ├── OmaSettingBase64.php │ │ ├── OmaSettingBoolean.php │ │ ├── OmaSettingDateTime.php │ │ ├── OmaSettingFloatingPoint.php │ │ ├── OmaSettingInteger.php │ │ ├── OmaSettingString.php │ │ ├── OmaSettingStringXml.php │ │ ├── OnPremisesAccidentalDeletionPrevention.php │ │ ├── OnPremisesConditionalAccessSettings.php │ │ ├── OnPremisesDirectorySynchronization.php │ │ ├── OnPremisesDirectorySynchronizationConfiguration.php │ │ ├── OnPremisesDirectorySynchronizationDeletionPreventionType.php │ │ ├── OnPremisesDirectorySynchronizationFeature.php │ │ ├── OnPremisesExtensionAttributes.php │ │ ├── OnPremisesProvisioningError.php │ │ ├── Onenote.php │ │ ├── OnenoteEntityBaseModel.php │ │ ├── OnenoteEntityHierarchyModel.php │ │ ├── OnenoteEntitySchemaObjectModel.php │ │ ├── OnenoteOperation.php │ │ ├── OnenoteOperationError.php │ │ ├── OnenotePage.php │ │ ├── OnenotePagePreview.php │ │ ├── OnenotePagePreviewLinks.php │ │ ├── OnenotePatchActionType.php │ │ ├── OnenotePatchContentCommand.php │ │ ├── OnenotePatchInsertPosition.php │ │ ├── OnenoteResource.php │ │ ├── OnenoteSection.php │ │ ├── OnenoteSourceService.php │ │ ├── OnenoteUserRole.php │ │ ├── OnlineMeeting.php │ │ ├── OnlineMeetingInfo.php │ │ ├── OnlineMeetingPresenters.php │ │ ├── OnlineMeetingProviderType.php │ │ ├── OnlineMeetingRole.php │ │ ├── OpenShift.php │ │ ├── OpenShiftChangeRequest.php │ │ ├── OpenShiftItem.php │ │ ├── OpenTypeExtension.php │ │ ├── Operation.php │ │ ├── OperationError.php │ │ ├── OperationResult.php │ │ ├── OperationStatus.php │ │ ├── OptionalClaim.php │ │ ├── OptionalClaims.php │ │ ├── OrgContact.php │ │ ├── Organization.php │ │ ├── OrganizationalBranding.php │ │ ├── OrganizationalBrandingLocalization.php │ │ ├── OrganizationalBrandingProperties.php │ │ ├── OrganizerMeetingInfo.php │ │ ├── OutgoingCallOptions.php │ │ ├── OutlookCategory.php │ │ ├── OutlookGeoCoordinates.php │ │ ├── OutlookItem.php │ │ ├── OutlookUser.php │ │ ├── Package.php │ │ ├── PageLinks.php │ │ ├── ParentalControlSettings.php │ │ ├── Participant.php │ │ ├── ParticipantInfo.php │ │ ├── ParticipantJoiningNotification.php │ │ ├── ParticipantJoiningResponse.php │ │ ├── ParticipantLeftNotification.php │ │ ├── PartnerTenantType.php │ │ ├── PasswordAuthenticationMethod.php │ │ ├── PasswordCredential.php │ │ ├── PasswordCredentialConfiguration.php │ │ ├── PasswordProfile.php │ │ ├── PasswordResetResponse.php │ │ ├── PatternedRecurrence.php │ │ ├── PayloadDeliveryPlatform.php │ │ ├── PendingContentUpdate.php │ │ ├── PendingOperations.php │ │ ├── Permission.php │ │ ├── PermissionClassificationType.php │ │ ├── PermissionGrantConditionSet.php │ │ ├── PermissionGrantPolicy.php │ │ ├── PermissionScope.php │ │ ├── PermissionType.php │ │ ├── PersistentBrowserSessionControl.php │ │ ├── PersistentBrowserSessionMode.php │ │ ├── Person.php │ │ ├── PersonOrGroupColumn.php │ │ ├── PersonType.php │ │ ├── Phone.php │ │ ├── PhoneAuthenticationMethod.php │ │ ├── PhoneType.php │ │ ├── Photo.php │ │ ├── PhysicalAddress.php │ │ ├── PhysicalAddressType.php │ │ ├── PhysicalOfficeAddress.php │ │ ├── PinnedChatMessageInfo.php │ │ ├── Pkcs12Certificate.php │ │ ├── Pkcs12CertificateInformation.php │ │ ├── Place.php │ │ ├── Planner.php │ │ ├── PlannerAppliedCategories.php │ │ ├── PlannerAssignedToTaskBoardTaskFormat.php │ │ ├── PlannerAssignment.php │ │ ├── PlannerAssignments.php │ │ ├── PlannerBucket.php │ │ ├── PlannerBucketTaskBoardTaskFormat.php │ │ ├── PlannerCategoryDescriptions.php │ │ ├── PlannerChecklistItem.php │ │ ├── PlannerChecklistItems.php │ │ ├── PlannerContainerType.php │ │ ├── PlannerExternalReference.php │ │ ├── PlannerExternalReferences.php │ │ ├── PlannerGroup.php │ │ ├── PlannerOrderHintsByAssignee.php │ │ ├── PlannerPlan.php │ │ ├── PlannerPlanContainer.php │ │ ├── PlannerPlanDetails.php │ │ ├── PlannerPreviewType.php │ │ ├── PlannerProgressTaskBoardTaskFormat.php │ │ ├── PlannerTask.php │ │ ├── PlannerTaskDetails.php │ │ ├── PlannerUser.php │ │ ├── PlannerUserIds.php │ │ ├── PlayPromptOperation.php │ │ ├── PolicyBase.php │ │ ├── PolicyPlatformType.php │ │ ├── PolicyRoot.php │ │ ├── Post.php │ │ ├── PostType.php │ │ ├── PreAuthorizedApplication.php │ │ ├── PrereleaseFeatures.php │ │ ├── Presence.php │ │ ├── PrincipalResourceMembershipsScope.php │ │ ├── PrintCertificateSigningRequest.php │ │ ├── PrintColorMode.php │ │ ├── PrintConnector.php │ │ ├── PrintDocument.php │ │ ├── PrintDocumentUploadProperties.php │ │ ├── PrintDuplexMode.php │ │ ├── PrintEvent.php │ │ ├── PrintFinishing.php │ │ ├── PrintJob.php │ │ ├── PrintJobConfiguration.php │ │ ├── PrintJobProcessingState.php │ │ ├── PrintJobStateDetail.php │ │ ├── PrintJobStatus.php │ │ ├── PrintMargin.php │ │ ├── PrintMultipageLayout.php │ │ ├── PrintOperation.php │ │ ├── PrintOperationProcessingState.php │ │ ├── PrintOperationStatus.php │ │ ├── PrintOrientation.php │ │ ├── PrintQuality.php │ │ ├── PrintScaling.php │ │ ├── PrintService.php │ │ ├── PrintServiceEndpoint.php │ │ ├── PrintSettings.php │ │ ├── PrintTask.php │ │ ├── PrintTaskDefinition.php │ │ ├── PrintTaskProcessingState.php │ │ ├── PrintTaskStatus.php │ │ ├── PrintTaskTrigger.php │ │ ├── PrintUsage.php │ │ ├── PrintUsageByPrinter.php │ │ ├── PrintUsageByUser.php │ │ ├── Printer.php │ │ ├── PrinterBase.php │ │ ├── PrinterCapabilities.php │ │ ├── PrinterCreateOperation.php │ │ ├── PrinterDefaults.php │ │ ├── PrinterFeedOrientation.php │ │ ├── PrinterLocation.php │ │ ├── PrinterProcessingState.php │ │ ├── PrinterProcessingStateDetail.php │ │ ├── PrinterShare.php │ │ ├── PrinterStatus.php │ │ ├── Privacy.php │ │ ├── PrivacyProfile.php │ │ ├── Process.php │ │ ├── ProcessIntegrityLevel.php │ │ ├── ProfilePhoto.php │ │ ├── Prompt.php │ │ ├── PromptLoginBehavior.php │ │ ├── ProvisionChannelEmailResult.php │ │ ├── ProvisionedIdentity.php │ │ ├── ProvisionedPlan.php │ │ ├── ProvisioningAction.php │ │ ├── ProvisioningErrorInfo.php │ │ ├── ProvisioningObjectSummary.php │ │ ├── ProvisioningResult.php │ │ ├── ProvisioningServicePrincipal.php │ │ ├── ProvisioningStatusErrorCategory.php │ │ ├── ProvisioningStatusInfo.php │ │ ├── ProvisioningStep.php │ │ ├── ProvisioningStepType.php │ │ ├── ProvisioningSystem.php │ │ ├── ProxiedDomain.php │ │ ├── PublicClientApplication.php │ │ ├── PublicError.php │ │ ├── PublicErrorDetail.php │ │ ├── PublicInnerError.php │ │ ├── PublicationFacet.php │ │ ├── Quota.php │ │ ├── RatingAppsType.php │ │ ├── RatingAustraliaMoviesType.php │ │ ├── RatingAustraliaTelevisionType.php │ │ ├── RatingCanadaMoviesType.php │ │ ├── RatingCanadaTelevisionType.php │ │ ├── RatingFranceMoviesType.php │ │ ├── RatingFranceTelevisionType.php │ │ ├── RatingGermanyMoviesType.php │ │ ├── RatingGermanyTelevisionType.php │ │ ├── RatingIrelandMoviesType.php │ │ ├── RatingIrelandTelevisionType.php │ │ ├── RatingJapanMoviesType.php │ │ ├── RatingJapanTelevisionType.php │ │ ├── RatingNewZealandMoviesType.php │ │ ├── RatingNewZealandTelevisionType.php │ │ ├── RatingUnitedKingdomMoviesType.php │ │ ├── RatingUnitedKingdomTelevisionType.php │ │ ├── RatingUnitedStatesMoviesType.php │ │ ├── RatingUnitedStatesTelevisionType.php │ │ ├── RbacApplication.php │ │ ├── RecentNotebook.php │ │ ├── RecentNotebookLinks.php │ │ ├── Recipient.php │ │ ├── RecipientScopeType.php │ │ ├── RecommendedAction.php │ │ ├── RecordOperation.php │ │ ├── RecordingInfo.php │ │ ├── RecordingStatus.php │ │ ├── RecurrencePattern.php │ │ ├── RecurrencePatternType.php │ │ ├── RecurrenceRange.php │ │ ├── RecurrenceRangeType.php │ │ ├── RedirectUriSettings.php │ │ ├── ReferenceAttachment.php │ │ ├── RegistrationEnforcement.php │ │ ├── RegistryHive.php │ │ ├── RegistryKeyState.php │ │ ├── RegistryOperation.php │ │ ├── RegistryValueType.php │ │ ├── RejectJoinResponse.php │ │ ├── RejectReason.php │ │ ├── RelatedContact.php │ │ ├── Reminder.php │ │ ├── RemoteAssistanceOnboardingStatus.php │ │ ├── RemoteAssistancePartner.php │ │ ├── RemoteItem.php │ │ ├── RemoteLockActionResult.php │ │ ├── RemoveAccessApplyAction.php │ │ ├── Report.php │ │ ├── ReportRoot.php │ │ ├── Request.php │ │ ├── RequestSchedule.php │ │ ├── RequestSignatureVerification.php │ │ ├── RequestorManager.php │ │ ├── RequiredPasswordType.php │ │ ├── RequiredResourceAccess.php │ │ ├── ResetPasscodeActionResult.php │ │ ├── ResourceAccess.php │ │ ├── ResourceAction.php │ │ ├── ResourceData.php │ │ ├── ResourceOperation.php │ │ ├── ResourcePermission.php │ │ ├── ResourceReference.php │ │ ├── ResourceSpecificPermission.php │ │ ├── ResourceSpecificPermissionGrant.php │ │ ├── ResourceVisualization.php │ │ ├── ResponseStatus.php │ │ ├── ResponseType.php │ │ ├── ResultInfo.php │ │ ├── ResultTemplate.php │ │ ├── ResultTemplateDictionary.php │ │ ├── ResultTemplateOption.php │ │ ├── RgbColor.php │ │ ├── RichLongRunningOperation.php │ │ ├── RiskDetail.php │ │ ├── RiskDetection.php │ │ ├── RiskDetectionTimingType.php │ │ ├── RiskEventType.php │ │ ├── RiskLevel.php │ │ ├── RiskServicePrincipalActivity.php │ │ ├── RiskState.php │ │ ├── RiskUserActivity.php │ │ ├── RiskyServicePrincipal.php │ │ ├── RiskyServicePrincipalHistoryItem.php │ │ ├── RiskyUser.php │ │ ├── RiskyUserHistoryItem.php │ │ ├── RoleAssignment.php │ │ ├── RoleAssignmentScheduleFilterByCurrentUserOptions.php │ │ ├── RoleAssignmentScheduleInstanceFilterByCurrentUserOptions.php │ │ ├── RoleAssignmentScheduleRequestFilterByCurrentUserOptions.php │ │ ├── RoleDefinition.php │ │ ├── RoleEligibilityScheduleFilterByCurrentUserOptions.php │ │ ├── RoleEligibilityScheduleInstanceFilterByCurrentUserOptions.php │ │ ├── RoleEligibilityScheduleRequestFilterByCurrentUserOptions.php │ │ ├── RoleManagement.php │ │ ├── RolePermission.php │ │ ├── Room.php │ │ ├── RoomList.php │ │ ├── Root.php │ │ ├── RoutingMode.php │ │ ├── RoutingType.php │ │ ├── RubricCriterion.php │ │ ├── RubricLevel.php │ │ ├── RubricQuality.php │ │ ├── RubricQualityFeedbackModel.php │ │ ├── RubricQualitySelectedColumnModel.php │ │ ├── RunAsAccountType.php │ │ ├── SafeSearchFilterType.php │ │ ├── SamlOrWsFedExternalDomainFederation.php │ │ ├── SamlOrWsFedProvider.php │ │ ├── SamlSingleSignOnSettings.php │ │ ├── Schedule.php │ │ ├── ScheduleChangeRequest.php │ │ ├── ScheduleChangeRequestActor.php │ │ ├── ScheduleChangeState.php │ │ ├── ScheduleEntity.php │ │ ├── ScheduleEntityTheme.php │ │ ├── ScheduleInformation.php │ │ ├── ScheduleItem.php │ │ ├── SchedulingGroup.php │ │ ├── SchemaExtension.php │ │ ├── ScopedRoleMembership.php │ │ ├── ScoredEmailAddress.php │ │ ├── ScreenSharingRole.php │ │ ├── SearchAggregation.php │ │ ├── SearchAlteration.php │ │ ├── SearchAlterationOptions.php │ │ ├── SearchAlterationType.php │ │ ├── SearchBucket.php │ │ ├── SearchContent.php │ │ ├── SearchEntity.php │ │ ├── SearchHit.php │ │ ├── SearchHitsContainer.php │ │ ├── SearchQuery.php │ │ ├── SearchRequest.php │ │ ├── SearchResponse.php │ │ ├── SearchResult.php │ │ ├── SectionGroup.php │ │ ├── SectionLinks.php │ │ ├── SecureScore.php │ │ ├── SecureScoreControlProfile.php │ │ ├── SecureScoreControlStateUpdate.php │ │ ├── Security.php │ │ ├── SecurityNetworkProtocol.php │ │ ├── SecurityReportsRoot.php │ │ ├── SecurityResource.php │ │ ├── SecurityResourceType.php │ │ ├── SecurityVendorInformation.php │ │ ├── SelectionLikelihoodInfo.php │ │ ├── SelfServiceSignUpAuthenticationFlowConfiguration.php │ │ ├── SelfSignedCertificate.php │ │ ├── Sensitivity.php │ │ ├── ServiceAnnouncement.php │ │ ├── ServiceAnnouncementAttachment.php │ │ ├── ServiceAnnouncementBase.php │ │ ├── ServiceHealth.php │ │ ├── ServiceHealthClassificationType.php │ │ ├── ServiceHealthIssue.php │ │ ├── ServiceHealthIssuePost.php │ │ ├── ServiceHealthOrigin.php │ │ ├── ServiceHealthStatus.php │ │ ├── ServiceHostedMediaConfig.php │ │ ├── ServicePlanInfo.php │ │ ├── ServicePrincipal.php │ │ ├── ServicePrincipalIdentity.php │ │ ├── ServicePrincipalRiskDetection.php │ │ ├── ServiceUpdateCategory.php │ │ ├── ServiceUpdateMessage.php │ │ ├── ServiceUpdateMessageViewpoint.php │ │ ├── ServiceUpdateSeverity.php │ │ ├── SettingSource.php │ │ ├── SettingSourceType.php │ │ ├── SettingStateDeviceSummary.php │ │ ├── SettingTemplateValue.php │ │ ├── SettingValue.php │ │ ├── SharePointIdentity.php │ │ ├── SharePointIdentitySet.php │ │ ├── SharePointOneDriveOptions.php │ │ ├── Shared.php │ │ ├── SharedDriveItem.php │ │ ├── SharedInsight.php │ │ ├── SharedPCAccountDeletionPolicyType.php │ │ ├── SharedPCAccountManagerPolicy.php │ │ ├── SharedPCAllowedAccountType.php │ │ ├── SharedPCConfiguration.php │ │ ├── SharedWithChannelTeamInfo.php │ │ ├── Sharepoint.php │ │ ├── SharepointIds.php │ │ ├── SharepointSettings.php │ │ ├── SharingCapabilities.php │ │ ├── SharingDetail.php │ │ ├── SharingDomainRestrictionMode.php │ │ ├── SharingInvitation.php │ │ ├── SharingLink.php │ │ ├── Shift.php │ │ ├── ShiftActivity.php │ │ ├── ShiftAvailability.php │ │ ├── ShiftItem.php │ │ ├── ShiftPreferences.php │ │ ├── SignIn.php │ │ ├── SignInActivity.php │ │ ├── SignInFrequencyAuthenticationType.php │ │ ├── SignInFrequencyInterval.php │ │ ├── SignInFrequencySessionControl.php │ │ ├── SignInLocation.php │ │ ├── SignInStatus.php │ │ ├── SigninFrequencyType.php │ │ ├── SigningCertificateUpdateStatus.php │ │ ├── Simulation.php │ │ ├── SimulationAttackTechnique.php │ │ ├── SimulationAttackType.php │ │ ├── SimulationAutomation.php │ │ ├── SimulationAutomationRun.php │ │ ├── SimulationAutomationRunStatus.php │ │ ├── SimulationAutomationStatus.php │ │ ├── SimulationEvent.php │ │ ├── SimulationEventsContent.php │ │ ├── SimulationReport.php │ │ ├── SimulationReportOverview.php │ │ ├── SimulationStatus.php │ │ ├── SingleServicePrincipal.php │ │ ├── SingleUser.php │ │ ├── SingleValueLegacyExtendedProperty.php │ │ ├── Site.php │ │ ├── SiteCollection.php │ │ ├── SiteSecurityLevel.php │ │ ├── SizeRange.php │ │ ├── SkypeForBusinessUserConversationMember.php │ │ ├── SkypeUserConversationMember.php │ │ ├── SmsAuthenticationMethodConfiguration.php │ │ ├── SmsAuthenticationMethodTarget.php │ │ ├── SocialIdentityProvider.php │ │ ├── SoftwareOathAuthenticationMethod.php │ │ ├── SoftwareOathAuthenticationMethodConfiguration.php │ │ ├── SoftwareUpdateStatusSummary.php │ │ ├── SolutionsRoot.php │ │ ├── SortProperty.php │ │ ├── SpaApplication.php │ │ ├── SpecialFolder.php │ │ ├── StaffAvailabilityItem.php │ │ ├── StagedFeatureName.php │ │ ├── StandardTimeZoneOffset.php │ │ ├── StartHoldMusicOperation.php │ │ ├── StateManagementSetting.php │ │ ├── Status.php │ │ ├── StopHoldMusicOperation.php │ │ ├── StoragePlanInformation.php │ │ ├── StsPolicy.php │ │ ├── SubjectRightsRequest.php │ │ ├── SubjectRightsRequestDetail.php │ │ ├── SubjectRightsRequestHistory.php │ │ ├── SubjectRightsRequestStage.php │ │ ├── SubjectRightsRequestStageDetail.php │ │ ├── SubjectRightsRequestStageStatus.php │ │ ├── SubjectRightsRequestStatus.php │ │ ├── SubjectRightsRequestType.php │ │ ├── SubjectSet.php │ │ ├── SubscribeToToneOperation.php │ │ ├── SubscribedSku.php │ │ ├── Subscription.php │ │ ├── SwapShiftsChangeRequest.php │ │ ├── SystemFacet.php │ │ ├── TabUpdatedEventMessageDetail.php │ │ ├── TargetApplicationOwners.php │ │ ├── TargetManager.php │ │ ├── TargetResource.php │ │ ├── TargetedManagedAppConfiguration.php │ │ ├── TargetedManagedAppGroupType.php │ │ ├── TargetedManagedAppPolicyAssignment.php │ │ ├── TargetedManagedAppProtection.php │ │ ├── TaskFileAttachment.php │ │ ├── TaskStatus.php │ │ ├── Team.php │ │ ├── TeamArchivedEventMessageDetail.php │ │ ├── TeamClassSettings.php │ │ ├── TeamCreatedEventMessageDetail.php │ │ ├── TeamDescriptionUpdatedEventMessageDetail.php │ │ ├── TeamFunSettings.php │ │ ├── TeamGuestSettings.php │ │ ├── TeamInfo.php │ │ ├── TeamJoiningDisabledEventMessageDetail.php │ │ ├── TeamJoiningEnabledEventMessageDetail.php │ │ ├── TeamMemberSettings.php │ │ ├── TeamMembersNotificationRecipient.php │ │ ├── TeamMessagingSettings.php │ │ ├── TeamRenamedEventMessageDetail.php │ │ ├── TeamSpecialization.php │ │ ├── TeamSummary.php │ │ ├── TeamUnarchivedEventMessageDetail.php │ │ ├── TeamVisibilityType.php │ │ ├── TeamsApp.php │ │ ├── TeamsAppDefinition.php │ │ ├── TeamsAppDistributionMethod.php │ │ ├── TeamsAppInstallation.php │ │ ├── TeamsAppInstalledEventMessageDetail.php │ │ ├── TeamsAppPublishingState.php │ │ ├── TeamsAppRemovedEventMessageDetail.php │ │ ├── TeamsAppUpgradedEventMessageDetail.php │ │ ├── TeamsAsyncOperation.php │ │ ├── TeamsAsyncOperationStatus.php │ │ ├── TeamsAsyncOperationType.php │ │ ├── TeamsTab.php │ │ ├── TeamsTabConfiguration.php │ │ ├── TeamsTemplate.php │ │ ├── Teamwork.php │ │ ├── TeamworkActivityTopic.php │ │ ├── TeamworkActivityTopicSource.php │ │ ├── TeamworkApplicationIdentity.php │ │ ├── TeamworkApplicationIdentityType.php │ │ ├── TeamworkBot.php │ │ ├── TeamworkCallEventType.php │ │ ├── TeamworkConversationIdentity.php │ │ ├── TeamworkConversationIdentityType.php │ │ ├── TeamworkHostedContent.php │ │ ├── TeamworkNotificationRecipient.php │ │ ├── TeamworkOnlineMeetingInfo.php │ │ ├── TeamworkTag.php │ │ ├── TeamworkTagIdentity.php │ │ ├── TeamworkTagMember.php │ │ ├── TeamworkTagType.php │ │ ├── TeamworkUserIdentity.php │ │ ├── TeamworkUserIdentityType.php │ │ ├── TelecomExpenseManagementPartner.php │ │ ├── TeleconferenceDeviceAudioQuality.php │ │ ├── TeleconferenceDeviceMediaQuality.php │ │ ├── TeleconferenceDeviceQuality.php │ │ ├── TeleconferenceDeviceScreenSharingQuality.php │ │ ├── TeleconferenceDeviceVideoQuality.php │ │ ├── TemplateScenarios.php │ │ ├── TemporaryAccessPassAuthenticationMethod.php │ │ ├── TemporaryAccessPassAuthenticationMethodConfiguration.php │ │ ├── TenantAppManagementPolicy.php │ │ ├── TenantRelationship.php │ │ ├── TermColumn.php │ │ ├── TermsAndConditions.php │ │ ├── TermsAndConditionsAcceptanceStatus.php │ │ ├── TermsAndConditionsAssignment.php │ │ ├── TermsExpiration.php │ │ ├── TermsOfUseContainer.php │ │ ├── TextColumn.php │ │ ├── ThreatAssessmentContentType.php │ │ ├── ThreatAssessmentRequest.php │ │ ├── ThreatAssessmentRequestSource.php │ │ ├── ThreatAssessmentResult.php │ │ ├── ThreatAssessmentResultType.php │ │ ├── ThreatAssessmentStatus.php │ │ ├── ThreatCategory.php │ │ ├── ThreatExpectedAssessment.php │ │ ├── Thumbnail.php │ │ ├── ThumbnailColumn.php │ │ ├── ThumbnailSet.php │ │ ├── TicketInfo.php │ │ ├── TimeConstraint.php │ │ ├── TimeOff.php │ │ ├── TimeOffItem.php │ │ ├── TimeOffReason.php │ │ ├── TimeOffReasonIconType.php │ │ ├── TimeOffRequest.php │ │ ├── TimeRange.php │ │ ├── TimeSlot.php │ │ ├── TimeZoneBase.php │ │ ├── TimeZoneInformation.php │ │ ├── TimeZoneStandard.php │ │ ├── Todo.php │ │ ├── TodoTask.php │ │ ├── TodoTaskList.php │ │ ├── TokenIssuancePolicy.php │ │ ├── TokenIssuerType.php │ │ ├── TokenLifetimePolicy.php │ │ ├── TokenMeetingInfo.php │ │ ├── Tone.php │ │ ├── ToneInfo.php │ │ ├── TrainingEventsContent.php │ │ ├── TrainingStatus.php │ │ ├── Trending.php │ │ ├── UnifiedApprovalStage.php │ │ ├── UnifiedRbacResourceAction.php │ │ ├── UnifiedRbacResourceNamespace.php │ │ ├── UnifiedRole.php │ │ ├── UnifiedRoleAssignment.php │ │ ├── UnifiedRoleAssignmentSchedule.php │ │ ├── UnifiedRoleAssignmentScheduleInstance.php │ │ ├── UnifiedRoleAssignmentScheduleRequest.php │ │ ├── UnifiedRoleDefinition.php │ │ ├── UnifiedRoleEligibilitySchedule.php │ │ ├── UnifiedRoleEligibilityScheduleInstance.php │ │ ├── UnifiedRoleEligibilityScheduleRequest.php │ │ ├── UnifiedRoleManagementPolicy.php │ │ ├── UnifiedRoleManagementPolicyApprovalRule.php │ │ ├── UnifiedRoleManagementPolicyAssignment.php │ │ ├── UnifiedRoleManagementPolicyAuthenticationContextRule.php │ │ ├── UnifiedRoleManagementPolicyEnablementRule.php │ │ ├── UnifiedRoleManagementPolicyExpirationRule.php │ │ ├── UnifiedRoleManagementPolicyNotificationRule.php │ │ ├── UnifiedRoleManagementPolicyRule.php │ │ ├── UnifiedRoleManagementPolicyRuleTarget.php │ │ ├── UnifiedRoleManagementPolicyRuleTargetOperations.php │ │ ├── UnifiedRolePermission.php │ │ ├── UnifiedRoleScheduleBase.php │ │ ├── UnifiedRoleScheduleInstanceBase.php │ │ ├── UnifiedRoleScheduleRequestActions.php │ │ ├── UnmuteParticipantOperation.php │ │ ├── UpdateAllowedCombinationsResult.php │ │ ├── UpdateRecordingStatusOperation.php │ │ ├── UpdateWindowsDeviceAccountActionParameter.php │ │ ├── UploadSession.php │ │ ├── UriClickSecurityState.php │ │ ├── UrlAssessmentRequest.php │ │ ├── UsageDetails.php │ │ ├── UsedInsight.php │ │ ├── User.php │ │ ├── UserAccountSecurityType.php │ │ ├── UserActivity.php │ │ ├── UserAttributeValuesItem.php │ │ ├── UserConsentRequest.php │ │ ├── UserExperienceAnalyticsDevicePerformance.php │ │ ├── UserExperienceAnalyticsHealthState.php │ │ ├── UserFlowApiConnectorConfiguration.php │ │ ├── UserFlowLanguageConfiguration.php │ │ ├── UserFlowLanguagePage.php │ │ ├── UserFlowType.php │ │ ├── UserIdentity.php │ │ ├── UserInstallStateSummary.php │ │ ├── UserPurpose.php │ │ ├── UserScopeTeamsAppInstallation.php │ │ ├── UserSecurityState.php │ │ ├── UserSettings.php │ │ ├── UserSimulationDetails.php │ │ ├── UserSimulationEventInfo.php │ │ ├── UserTeamwork.php │ │ ├── UserTrainingContentEventInfo.php │ │ ├── UserTrainingEventInfo.php │ │ ├── UserTrainingStatusInfo.php │ │ ├── VerifiedDomain.php │ │ ├── VerifiedPublisher.php │ │ ├── Video.php │ │ ├── VisibilitySetting.php │ │ ├── VisualInfo.php │ │ ├── VoiceAuthenticationMethodConfiguration.php │ │ ├── VolumeType.php │ │ ├── VppLicensingType.php │ │ ├── VppToken.php │ │ ├── VppTokenAccountType.php │ │ ├── VppTokenState.php │ │ ├── VppTokenSyncStatus.php │ │ ├── VulnerabilityState.php │ │ ├── WatermarkProtectionValues.php │ │ ├── WeakAlgorithms.php │ │ ├── WebApp.php │ │ ├── WebApplication.php │ │ ├── WebBrowserCookieSettings.php │ │ ├── Website.php │ │ ├── WebsiteType.php │ │ ├── WeekIndex.php │ │ ├── WeeklySchedule.php │ │ ├── WelcomeScreenMeetingInformation.php │ │ ├── WellknownListName.php │ │ ├── Win32LobApp.php │ │ ├── Win32LobAppAssignmentSettings.php │ │ ├── Win32LobAppDeliveryOptimizationPriority.php │ │ ├── Win32LobAppFileSystemOperationType.php │ │ ├── Win32LobAppFileSystemRule.php │ │ ├── Win32LobAppInstallExperience.php │ │ ├── Win32LobAppMsiInformation.php │ │ ├── Win32LobAppMsiPackageType.php │ │ ├── Win32LobAppNotification.php │ │ ├── Win32LobAppPowerShellScriptRule.php │ │ ├── Win32LobAppPowerShellScriptRuleOperationType.php │ │ ├── Win32LobAppProductCodeRule.php │ │ ├── Win32LobAppRegistryRule.php │ │ ├── Win32LobAppRegistryRuleOperationType.php │ │ ├── Win32LobAppRestartBehavior.php │ │ ├── Win32LobAppRestartSettings.php │ │ ├── Win32LobAppReturnCode.php │ │ ├── Win32LobAppReturnCodeType.php │ │ ├── Win32LobAppRule.php │ │ ├── Win32LobAppRuleOperator.php │ │ ├── Win32LobAppRuleType.php │ │ ├── Windows10CompliancePolicy.php │ │ ├── Windows10CustomConfiguration.php │ │ ├── Windows10EditionType.php │ │ ├── Windows10EndpointProtectionConfiguration.php │ │ ├── Windows10EnterpriseModernAppManagementConfiguration.php │ │ ├── Windows10GeneralConfiguration.php │ │ ├── Windows10MobileCompliancePolicy.php │ │ ├── Windows10NetworkProxyServer.php │ │ ├── Windows10SecureAssessmentConfiguration.php │ │ ├── Windows10TeamGeneralConfiguration.php │ │ ├── Windows81CompliancePolicy.php │ │ ├── Windows81GeneralConfiguration.php │ │ ├── WindowsAppX.php │ │ ├── WindowsAppXAppAssignmentSettings.php │ │ ├── WindowsArchitecture.php │ │ ├── WindowsAutopilotDeviceIdentity.php │ │ ├── WindowsDefenderAdvancedThreatProtectionConfiguration.php │ │ ├── WindowsDefenderScanActionResult.php │ │ ├── WindowsDeliveryOptimizationMode.php │ │ ├── WindowsDeviceADAccount.php │ │ ├── WindowsDeviceAccount.php │ │ ├── WindowsDeviceAzureADAccount.php │ │ ├── WindowsDeviceType.php │ │ ├── WindowsFirewallNetworkProfile.php │ │ ├── WindowsHelloForBusinessAuthenticationMethod.php │ │ ├── WindowsHelloForBusinessPinUsage.php │ │ ├── WindowsInformationProtection.php │ │ ├── WindowsInformationProtectionApp.php │ │ ├── WindowsInformationProtectionAppLearningSummary.php │ │ ├── WindowsInformationProtectionAppLockerFile.php │ │ ├── WindowsInformationProtectionDataRecoveryCertificate.php │ │ ├── WindowsInformationProtectionDesktopApp.php │ │ ├── WindowsInformationProtectionEnforcementLevel.php │ │ ├── WindowsInformationProtectionIPRangeCollection.php │ │ ├── WindowsInformationProtectionNetworkLearningSummary.php │ │ ├── WindowsInformationProtectionPinCharacterRequirements.php │ │ ├── WindowsInformationProtectionPolicy.php │ │ ├── WindowsInformationProtectionProxiedDomainCollection.php │ │ ├── WindowsInformationProtectionResourceCollection.php │ │ ├── WindowsInformationProtectionStoreApp.php │ │ ├── WindowsMicrosoftEdgeApp.php │ │ ├── WindowsMinimumOperatingSystem.php │ │ ├── WindowsMobileMSI.php │ │ ├── WindowsPhone81CompliancePolicy.php │ │ ├── WindowsPhone81CustomConfiguration.php │ │ ├── WindowsPhone81GeneralConfiguration.php │ │ ├── WindowsSpotlightEnablementSettings.php │ │ ├── WindowsStartMenuAppListVisibilityType.php │ │ ├── WindowsStartMenuModeType.php │ │ ├── WindowsUniversalAppX.php │ │ ├── WindowsUniversalAppXAppAssignmentSettings.php │ │ ├── WindowsUniversalAppXContainedApp.php │ │ ├── WindowsUpdateActiveHoursInstall.php │ │ ├── WindowsUpdateForBusinessConfiguration.php │ │ ├── WindowsUpdateForBusinessUpdateWeeks.php │ │ ├── WindowsUpdateInstallScheduleType.php │ │ ├── WindowsUpdateNotificationDisplayOption.php │ │ ├── WindowsUpdateScheduledInstall.php │ │ ├── WindowsUpdateType.php │ │ ├── WindowsUserAccountControlSettings.php │ │ ├── WindowsWebApp.php │ │ ├── Workbook.php │ │ ├── WorkbookApplication.php │ │ ├── WorkbookChart.php │ │ ├── WorkbookChartAreaFormat.php │ │ ├── WorkbookChartAxes.php │ │ ├── WorkbookChartAxis.php │ │ ├── WorkbookChartAxisFormat.php │ │ ├── WorkbookChartAxisTitle.php │ │ ├── WorkbookChartAxisTitleFormat.php │ │ ├── WorkbookChartDataLabelFormat.php │ │ ├── WorkbookChartDataLabels.php │ │ ├── WorkbookChartFill.php │ │ ├── WorkbookChartFont.php │ │ ├── WorkbookChartGridlines.php │ │ ├── WorkbookChartGridlinesFormat.php │ │ ├── WorkbookChartLegend.php │ │ ├── WorkbookChartLegendFormat.php │ │ ├── WorkbookChartLineFormat.php │ │ ├── WorkbookChartPoint.php │ │ ├── WorkbookChartPointFormat.php │ │ ├── WorkbookChartSeries.php │ │ ├── WorkbookChartSeriesFormat.php │ │ ├── WorkbookChartTitle.php │ │ ├── WorkbookChartTitleFormat.php │ │ ├── WorkbookComment.php │ │ ├── WorkbookCommentReply.php │ │ ├── WorkbookFilter.php │ │ ├── WorkbookFilterCriteria.php │ │ ├── WorkbookFilterDatetime.php │ │ ├── WorkbookFormatProtection.php │ │ ├── WorkbookFunctionResult.php │ │ ├── WorkbookFunctions.php │ │ ├── WorkbookIcon.php │ │ ├── WorkbookNamedItem.php │ │ ├── WorkbookOperation.php │ │ ├── WorkbookOperationError.php │ │ ├── WorkbookOperationStatus.php │ │ ├── WorkbookPivotTable.php │ │ ├── WorkbookRange.php │ │ ├── WorkbookRangeBorder.php │ │ ├── WorkbookRangeFill.php │ │ ├── WorkbookRangeFont.php │ │ ├── WorkbookRangeFormat.php │ │ ├── WorkbookRangeReference.php │ │ ├── WorkbookRangeSort.php │ │ ├── WorkbookRangeView.php │ │ ├── WorkbookSessionInfo.php │ │ ├── WorkbookSortField.php │ │ ├── WorkbookTable.php │ │ ├── WorkbookTableColumn.php │ │ ├── WorkbookTableRow.php │ │ ├── WorkbookTableSort.php │ │ ├── WorkbookWorksheet.php │ │ ├── WorkbookWorksheetProtection.php │ │ ├── WorkbookWorksheetProtectionOptions.php │ │ ├── WorkforceIntegration.php │ │ ├── WorkforceIntegrationEncryption.php │ │ ├── WorkforceIntegrationEncryptionProtocol.php │ │ ├── WorkforceIntegrationSupportedEntities.php │ │ ├── WorkingHours.php │ │ ├── X509CertificateAuthenticationMethodConfiguration.php │ │ ├── X509CertificateAuthenticationMode.php │ │ ├── X509CertificateAuthenticationModeConfiguration.php │ │ ├── X509CertificateRule.php │ │ ├── X509CertificateRuleType.php │ │ └── X509CertificateUserBinding.php │ ├── SecurityNamespace │ │ └── Model │ │ │ ├── AdditionalDataOptions.php │ │ │ ├── Alert.php │ │ │ ├── AlertClassification.php │ │ │ ├── AlertComment.php │ │ │ ├── AlertDetermination.php │ │ │ ├── AlertEvidence.php │ │ │ ├── AlertSeverity.php │ │ │ ├── AlertStatus.php │ │ │ ├── AnalyzedMessageEvidence.php │ │ │ ├── CaseAction.php │ │ │ ├── CaseOperation.php │ │ │ ├── CaseOperationStatus.php │ │ │ ├── CaseStatus.php │ │ │ ├── CasesRoot.php │ │ │ ├── ChildSelectability.php │ │ │ ├── CloudApplicationEvidence.php │ │ │ ├── DataSet.php │ │ │ ├── DataSource.php │ │ │ ├── DataSourceContainer.php │ │ │ ├── DataSourceContainerStatus.php │ │ │ ├── DataSourceHoldStatus.php │ │ │ ├── DataSourceScopes.php │ │ │ ├── DefenderAvStatus.php │ │ │ ├── DetectionSource.php │ │ │ ├── DetectionStatus.php │ │ │ ├── DeviceEvidence.php │ │ │ ├── DeviceHealthStatus.php │ │ │ ├── DeviceRiskScore.php │ │ │ ├── EdiscoveryAddToReviewSetOperation.php │ │ │ ├── EdiscoveryCase.php │ │ │ ├── EdiscoveryCaseSettings.php │ │ │ ├── EdiscoveryCustodian.php │ │ │ ├── EdiscoveryEstimateOperation.php │ │ │ ├── EdiscoveryHoldOperation.php │ │ │ ├── EdiscoveryIndexOperation.php │ │ │ ├── EdiscoveryNoncustodialDataSource.php │ │ │ ├── EdiscoveryPurgeDataOperation.php │ │ │ ├── EdiscoveryReviewSet.php │ │ │ ├── EdiscoveryReviewSetQuery.php │ │ │ ├── EdiscoveryReviewTag.php │ │ │ ├── EdiscoverySearch.php │ │ │ ├── EdiscoveryTagOperation.php │ │ │ ├── EmailSender.php │ │ │ ├── EventPropagationResult.php │ │ │ ├── EventPropagationStatus.php │ │ │ ├── EventQuery.php │ │ │ ├── EventStatusType.php │ │ │ ├── EvidenceRemediationStatus.php │ │ │ ├── EvidenceRole.php │ │ │ ├── EvidenceVerdict.php │ │ │ ├── FileDetails.php │ │ │ ├── FileEvidence.php │ │ │ ├── GraphCase.php │ │ │ ├── HuntingQueryResults.php │ │ │ ├── HuntingRowResult.php │ │ │ ├── Incident.php │ │ │ ├── IncidentStatus.php │ │ │ ├── IpEvidence.php │ │ │ ├── LoggedOnUser.php │ │ │ ├── MailClusterEvidence.php │ │ │ ├── MailboxEvidence.php │ │ │ ├── OauthApplicationEvidence.php │ │ │ ├── OcrSettings.php │ │ │ ├── OnboardingStatus.php │ │ │ ├── ProcessEvidence.php │ │ │ ├── PurgeAreas.php │ │ │ ├── PurgeType.php │ │ │ ├── QueryType.php │ │ │ ├── RedundancyDetectionSettings.php │ │ │ ├── RegistryKeyEvidence.php │ │ │ ├── RegistryValueEvidence.php │ │ │ ├── RetentionEvent.php │ │ │ ├── RetentionEventStatus.php │ │ │ ├── RetentionEventType.php │ │ │ ├── RetentionTrigger.php │ │ │ ├── Search.php │ │ │ ├── SecurityGroupEvidence.php │ │ │ ├── ServiceSource.php │ │ │ ├── SinglePropertySchema.php │ │ │ ├── SiteSource.php │ │ │ ├── SourceType.php │ │ │ ├── StringValueDictionary.php │ │ │ ├── Tag.php │ │ │ ├── TopicModelingSettings.php │ │ │ ├── TriggerTypesRoot.php │ │ │ ├── TriggersRoot.php │ │ │ ├── UnifiedGroupSource.php │ │ │ ├── UrlEvidence.php │ │ │ ├── UserAccount.php │ │ │ ├── UserEvidence.php │ │ │ ├── UserSource.php │ │ │ ├── VmCloudProvider.php │ │ │ └── VmMetadata.php │ └── TermStore │ │ └── Model │ │ ├── Group.php │ │ ├── LocalizedDescription.php │ │ ├── LocalizedLabel.php │ │ ├── LocalizedName.php │ │ ├── Relation.php │ │ ├── RelationType.php │ │ ├── Set.php │ │ ├── Store.php │ │ ├── Term.php │ │ └── TermGroupScope.php │ └── tests │ ├── Core │ └── ExceptionWrapperTest.php │ ├── Exception │ └── ExceptionTest.php │ ├── Functional │ ├── AzureTest.php │ ├── ContactTest.php │ ├── DeltaQueryTest.php │ ├── EventTest.php │ ├── ExcelTest.php │ ├── GraphTestBase.php │ ├── MailTest.php │ ├── OnedriveTest.php │ ├── OnenoteTest.php │ ├── OpenTypeTest.php │ ├── PlannerTest.php │ ├── Resources │ │ ├── document.pdf │ │ ├── excelTestResource.xlsx │ │ ├── hamilton.jpg │ │ └── metadata.xml │ ├── SharepointTest.php │ ├── TermStoreTest.php │ ├── TestConstants.php │ ├── UserTest.php │ └── WebhooksTest.php │ ├── GetPhpInfo.php │ ├── GraphTest.php │ ├── Http │ ├── GraphCollectionRequestTest.php │ ├── GraphRequestTest.php │ ├── GraphResponseTest.php │ ├── HttpTest.php │ ├── MockClientFactory.php │ └── StreamTest.php │ └── Model │ └── ModelTest.php ├── monolog └── monolog │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpstan.neon.dist │ └── src │ └── Monolog │ ├── ErrorHandler.php │ ├── Formatter │ ├── ChromePHPFormatter.php │ ├── ElasticaFormatter.php │ ├── FlowdockFormatter.php │ ├── FluentdFormatter.php │ ├── FormatterInterface.php │ ├── GelfMessageFormatter.php │ ├── HtmlFormatter.php │ ├── JsonFormatter.php │ ├── LineFormatter.php │ ├── LogglyFormatter.php │ ├── LogstashFormatter.php │ ├── MongoDBFormatter.php │ ├── NormalizerFormatter.php │ ├── ScalarFormatter.php │ └── WildfireFormatter.php │ ├── Handler │ ├── AbstractHandler.php │ ├── AbstractProcessingHandler.php │ ├── AbstractSyslogHandler.php │ ├── AmqpHandler.php │ ├── BrowserConsoleHandler.php │ ├── BufferHandler.php │ ├── ChromePHPHandler.php │ ├── CouchDBHandler.php │ ├── CubeHandler.php │ ├── Curl │ │ └── Util.php │ ├── DeduplicationHandler.php │ ├── DoctrineCouchDBHandler.php │ ├── DynamoDbHandler.php │ ├── ElasticSearchHandler.php │ ├── ErrorLogHandler.php │ ├── FilterHandler.php │ ├── FingersCrossed │ │ ├── ActivationStrategyInterface.php │ │ ├── ChannelLevelActivationStrategy.php │ │ └── ErrorLevelActivationStrategy.php │ ├── FingersCrossedHandler.php │ ├── FirePHPHandler.php │ ├── FleepHookHandler.php │ ├── FlowdockHandler.php │ ├── FormattableHandlerInterface.php │ ├── FormattableHandlerTrait.php │ ├── GelfHandler.php │ ├── GroupHandler.php │ ├── HandlerInterface.php │ ├── HandlerWrapper.php │ ├── HipChatHandler.php │ ├── IFTTTHandler.php │ ├── InsightOpsHandler.php │ ├── LogEntriesHandler.php │ ├── LogglyHandler.php │ ├── MailHandler.php │ ├── MandrillHandler.php │ ├── MissingExtensionException.php │ ├── MongoDBHandler.php │ ├── NativeMailerHandler.php │ ├── NewRelicHandler.php │ ├── NullHandler.php │ ├── PHPConsoleHandler.php │ ├── ProcessableHandlerInterface.php │ ├── ProcessableHandlerTrait.php │ ├── PsrHandler.php │ ├── PushoverHandler.php │ ├── RavenHandler.php │ ├── RedisHandler.php │ ├── RollbarHandler.php │ ├── RotatingFileHandler.php │ ├── SamplingHandler.php │ ├── Slack │ │ └── SlackRecord.php │ ├── SlackHandler.php │ ├── SlackWebhookHandler.php │ ├── SlackbotHandler.php │ ├── SocketHandler.php │ ├── StreamHandler.php │ ├── SwiftMailerHandler.php │ ├── SyslogHandler.php │ ├── SyslogUdp │ │ └── UdpSocket.php │ ├── SyslogUdpHandler.php │ ├── TestHandler.php │ ├── WhatFailureGroupHandler.php │ └── ZendMonitorHandler.php │ ├── Logger.php │ ├── Processor │ ├── GitProcessor.php │ ├── IntrospectionProcessor.php │ ├── MemoryPeakUsageProcessor.php │ ├── MemoryProcessor.php │ ├── MemoryUsageProcessor.php │ ├── MercurialProcessor.php │ ├── ProcessIdProcessor.php │ ├── ProcessorInterface.php │ ├── PsrLogMessageProcessor.php │ ├── TagProcessor.php │ ├── UidProcessor.php │ └── WebProcessor.php │ ├── Registry.php │ ├── ResettableInterface.php │ ├── SignalHandler.php │ └── Utils.php ├── mtdowling └── jmespath.php │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.rst │ ├── bin │ ├── jp.php │ └── perf.php │ ├── composer.json │ └── src │ ├── AstRuntime.php │ ├── CompilerRuntime.php │ ├── DebugRuntime.php │ ├── Env.php │ ├── FnDispatcher.php │ ├── JmesPath.php │ ├── Lexer.php │ ├── Parser.php │ ├── SyntaxErrorException.php │ ├── TreeCompiler.php │ ├── TreeInterpreter.php │ └── Utils.php ├── mustangostang └── spyc │ ├── .gitignore │ ├── COPYING │ ├── README.md │ ├── Spyc.php │ ├── composer.json │ ├── examples │ ├── yaml-dump.php │ └── yaml-load.php │ ├── php4 │ ├── 5to4.php │ ├── spyc.php4 │ └── test.php4 │ ├── phpunit.xml │ ├── spyc.yaml │ └── tests │ ├── DumpTest.php │ ├── IndentTest.php │ ├── LoadTest.php │ ├── ParseTest.php │ ├── RoundTripTest.php │ ├── comments.yaml │ ├── failing1.yaml │ ├── indent_1.yaml │ └── quotes.yaml ├── myclabs └── php-enum │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ ├── src │ ├── Enum.php │ └── PHPUnit │ │ └── Comparator.php │ └── stubs │ └── Stringable.php ├── netease └── nos-php-sdk │ ├── .gitignore │ ├── README.md │ ├── autoload.php │ ├── build-phar.sh │ ├── composer.json │ ├── index.php │ ├── phpunit.xml │ ├── samples │ ├── Bucket.php │ ├── Common.php │ ├── Config.php │ ├── MultipartUpload.php │ ├── Object.php │ ├── RunAll.php │ └── Signature.php │ ├── src │ └── NOS │ │ ├── Core │ │ ├── MimeTypes.php │ │ ├── NosException.php │ │ └── NosUtil.php │ │ ├── Http │ │ ├── LICENSE │ │ ├── RequestCore.php │ │ ├── RequestCore_Exception.php │ │ └── ResponseCore.php │ │ ├── Model │ │ ├── BucketInfo.php │ │ ├── BucketListInfo.php │ │ ├── DeleteFailedInfo.php │ │ ├── ListMultipartUploadInfo.php │ │ ├── ListPartsInfo.php │ │ ├── ObjectInfo.php │ │ ├── ObjectListInfo.php │ │ ├── PartInfo.php │ │ ├── UploadInfo.php │ │ └── XmlConfig.php │ │ ├── NosClient.php │ │ └── Result │ │ ├── BodyResult.php │ │ ├── ExistResult.php │ │ ├── GetLocationResult.php │ │ ├── GetObjectMetaResult.php │ │ ├── InitiateMultipartUploadResult.php │ │ ├── ListBucketsResult.php │ │ ├── ListMultipartUploadResult.php │ │ ├── ListObjectsResult.php │ │ ├── ListPartsResult.php │ │ ├── MultiDeleteResult.php │ │ ├── ObjDeduplicateResult.php │ │ ├── PutSetDeleteResult.php │ │ ├── Result.php │ │ ├── UploadPartResult.php │ │ ├── aclResult.php │ │ └── statusResult.php │ └── tests │ └── NOS │ └── Tests │ ├── BodyResultTest.php │ ├── BucketInfoTest.php │ ├── BucketListInfoTest.php │ ├── Common.php │ ├── ContentTypeTest.php │ ├── ExistResultTest.php │ ├── GetLocationResultTest.php │ ├── HttpTest.php │ ├── InitMultipartUploadResultTest.php │ ├── ListBucketsResultTest.php │ ├── ListMultipartUploadInfoTest.php │ ├── ListMultipartUploadResultTest.php │ ├── ListObjectsResultTest.php │ ├── ListPartsInfoTest.php │ ├── ListPartsResultTest.php │ ├── MimeTypesTest.php │ ├── NosClientBucketTest.php │ ├── NosClientMultipartUploadTest.php │ ├── NosClientObjectTest.php │ ├── NosClientSignatureTest.php │ ├── NosClientTest.php │ ├── NosExceptionTest.php │ ├── NosUtilTest.php │ ├── ObjDeduplicateResultTest.php │ ├── ObjectInfoTest.php │ ├── ObjectListInfoTest.php │ ├── PartInfoTest.php │ ├── PutSetDeleteResultTest.php │ ├── StatusResultTest.php │ ├── TestNosClientBase.php │ ├── UploadInfoTest.php │ ├── UploadPartResultTest.php │ └── aclResultTest.php ├── phpseclib └── phpseclib │ ├── AUTHORS │ ├── BACKERS.md │ ├── LICENSE │ ├── README.md │ ├── appveyor.yml │ ├── composer.json │ └── phpseclib │ ├── Crypt │ ├── AES.php │ ├── Base.php │ ├── Blowfish.php │ ├── DES.php │ ├── Hash.php │ ├── RC2.php │ ├── RC4.php │ ├── RSA.php │ ├── Random.php │ ├── Rijndael.php │ ├── TripleDES.php │ └── Twofish.php │ ├── File │ ├── ANSI.php │ ├── ASN1.php │ ├── ASN1 │ │ └── Element.php │ └── X509.php │ ├── Math │ └── BigInteger.php │ ├── Net │ ├── SCP.php │ ├── SFTP.php │ ├── SFTP │ │ └── Stream.php │ ├── SSH1.php │ └── SSH2.php │ ├── System │ └── SSH │ │ ├── Agent.php │ │ └── Agent │ │ └── Identity.php │ ├── bootstrap.php │ └── openssl.cnf ├── psr ├── http-message │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── docs │ │ ├── PSR7-Interfaces.md │ │ └── PSR7-Usage.md │ └── src │ │ ├── MessageInterface.php │ │ ├── RequestInterface.php │ │ ├── ResponseInterface.php │ │ ├── ServerRequestInterface.php │ │ ├── StreamInterface.php │ │ ├── UploadedFileInterface.php │ │ └── UriInterface.php └── log │ ├── LICENSE │ ├── Psr │ └── Log │ │ ├── AbstractLogger.php │ │ ├── InvalidArgumentException.php │ │ ├── LogLevel.php │ │ ├── LoggerAwareInterface.php │ │ ├── LoggerAwareTrait.php │ │ ├── LoggerInterface.php │ │ ├── LoggerTrait.php │ │ ├── NullLogger.php │ │ └── Test │ │ ├── DummyTest.php │ │ ├── LoggerInterfaceTest.php │ │ └── TestLogger.php │ ├── README.md │ └── composer.json ├── qcloud └── cos-sdk-v5 │ ├── .github │ └── workflows │ │ ├── format.yml │ │ └── install.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── sample │ ├── ImageSearch.php │ ├── ImageSearchAdd.php │ ├── ImageSearchDelete.php │ ├── ImageSearchOpen.php │ ├── abortMultipartUpload.php │ ├── addHotLink.php │ ├── appendObject.php │ ├── bindCiService.php │ ├── blindWatermark.php │ ├── cancelInventoryTriggerJob.php │ ├── cancelLiveVideoAuditing.php │ ├── catchException.php │ ├── ciTransformation.php │ ├── closeOriginProtect.php │ ├── completeMultipartUpload.php │ ├── copy.php │ ├── copyObject.php │ ├── cosClient.php │ ├── createBucket.php │ ├── createDocProcessJobs.php │ ├── createFileCompressJobs.php │ ├── createFileHashCodeJobs.php │ ├── createFileUncompressJobs.php │ ├── createFolder.php │ ├── createInventoryTriggerJob.php │ ├── createMediaAnimationJobs.php │ ├── createMediaAnimationTemplate.php │ ├── createMediaConcatJobs.php │ ├── createMediaConcatTemplate.php │ ├── createMediaDigitalWatermarkJobs.php │ ├── createMediaExtractDigitalWatermarkJobs.php │ ├── createMediaHighSpeedHdTemplate.php │ ├── createMediaJobs.php │ ├── createMediaNoiseReductionJobs.php │ ├── createMediaPicProcessJobs.php │ ├── createMediaPicProcessTemplate.php │ ├── createMediaQualityEstimateJobs.php │ ├── createMediaSDRtoHDRJobs.php │ ├── createMediaSegmentJobs.php │ ├── createMediaSmartCoverJobs.php │ ├── createMediaSnapshotJobs.php │ ├── createMediaSnapshotTemplate.php │ ├── createMediaStreamExtractJobs.php │ ├── createMediaSuperResolutionJobs.php │ ├── createMediaSuperResolutionTemplate.php │ ├── createMediaTranscodeJobs.php │ ├── createMediaTranscodeTemplate.php │ ├── createMediaVideoMontageJobs.php │ ├── createMediaVideoMontageTemplate.php │ ├── createMediaVideoProcessJobs.php │ ├── createMediaVideoProcessTemplate.php │ ├── createMediaVideoTagJobs.php │ ├── createMediaVoiceSeparateJobs.php │ ├── createMediaVoiceSeparateTemplate.php │ ├── createMediaWatermarkTemplate.php │ ├── createMultipartUpload.php │ ├── deleteBucket.php │ ├── deleteBucketCors.php │ ├── deleteBucketDomain.php │ ├── deleteBucketGuetzli.php │ ├── deleteBucketImageStyle.php │ ├── deleteBucketLifecycle.php │ ├── deleteBucketTagging.php │ ├── deleteBucketWebsite.php │ ├── deleteBuckets.php │ ├── deleteFolder.php │ ├── deleteObject.php │ ├── deleteObjectTagging.php │ ├── deleteWorkflow.php │ ├── describeInventoryTriggerJob.php │ ├── describeInventoryTriggerJobs.php │ ├── describeMediaJob.php │ ├── describeMediaJobs.php │ ├── describeMediaTemplates.php │ ├── describeWorkflow.php │ ├── detectAudio.php │ ├── detectDocument.php │ ├── detectImage.php │ ├── detectImages.php │ ├── detectLable.php │ ├── detectLiveVideo.php │ ├── detectText.php │ ├── detectVideo.php │ ├── detectVirus.php │ ├── detectWebpage.php │ ├── document2dstType.php │ ├── doesBucketExist.php │ ├── doesObjectExist.php │ ├── download.php │ ├── downloadFolder.php │ ├── fileJobs4Hash.php │ ├── getActionSequence.php │ ├── getBlindWatermark.php │ ├── getBucketAccelerate.php │ ├── getBucketAcl.php │ ├── getBucketCors.php │ ├── getBucketDomain.php │ ├── getBucketGuetzli.php │ ├── getBucketImageStyle.php │ ├── getBucketInventory.php │ ├── getBucketLifecycle.php │ ├── getBucketLogging.php │ ├── getBucketReferer.php │ ├── getBucketTagging.php │ ├── getBucketWebsite.php │ ├── getCiService.php │ ├── getDescribeDocProcessBuckets.php │ ├── getDescribeDocProcessJob.php │ ├── getDescribeDocProcessJobs.php │ ├── getDescribeDocProcessQueues.php │ ├── getDescribeMediaBuckets.php │ ├── getDescribeMediaQueues.php │ ├── getDescribeMediaVoiceSeparateJob.php │ ├── getDetectAudioResult.php │ ├── getDetectDocumentResult.php │ ├── getDetectImageResult.php │ ├── getDetectTextResult.php │ ├── getDetectVideoResult.php │ ├── getDetectVirusResult.php │ ├── getDetectWebpageResult.php │ ├── getFileCompressResult.php │ ├── getFileHashCodeResult.php │ ├── getFileProcessQueueList.php │ ├── getFileUncompressResult.php │ ├── getHotLink.php │ ├── getLiveCode.php │ ├── getMediaInfo.php │ ├── getObject.php │ ├── getObjectSensitiveContentRecognition.php │ ├── getObjectTagging.php │ ├── getObjectUrl.php │ ├── getObjectWithoutSign.php │ ├── getOriginProtect.php │ ├── getPresignedUrl.php │ ├── getPrivateM3U8.php │ ├── getSnapshot.php │ ├── getWorkflowInstance.php │ ├── getWorkflowInstances.php │ ├── headBucket.php │ ├── headObject.php │ ├── iDCardOCR.php │ ├── imageAssessQualityProcess.php │ ├── imageAve.php │ ├── imageDetectCarProcess.php │ ├── imageDetectFace.php │ ├── imageExif.php │ ├── imageFaceEffect.php │ ├── imageInfo.php │ ├── imageMogr.php │ ├── imageProcess.php │ ├── imageProcessBright.php │ ├── imageProcessChannel.php │ ├── imageProcessContrast.php │ ├── imageProcessCrop.php │ ├── imageProcessFormat.php │ ├── imageProcessFormatAvif.php │ ├── imageProcessFormatHeif.php │ ├── imageProcessFormatSvgc.php │ ├── imageProcessFormatTpg.php │ ├── imageProcessFormatWebp.php │ ├── imageProcessGaussianBlur.php │ ├── imageProcessGrayscale.php │ ├── imageProcessImageView.php │ ├── imageProcessQuality.php │ ├── imageProcessRotate.php │ ├── imageProcessSharpen.php │ ├── imageProcessSizeLimit.php │ ├── imageProcessStrip.php │ ├── imageProcessThumbnail.php │ ├── imageProcessWatermarkImage.php │ ├── imageProcessWatermarkText.php │ ├── imageRepairProcess.php │ ├── imageView.php │ ├── imageWatermark.php │ ├── listBuckets.php │ ├── listMultipartUploads.php │ ├── listObjects.php │ ├── listParts.php │ ├── openFileProcessService.php │ ├── openOriginProtect.php │ ├── opticalOcrRecognition.php │ ├── picOperations.php │ ├── putBlindWatermark.php │ ├── putBucketAccelerate.php │ ├── putBucketAcl.php │ ├── putBucketCors.php │ ├── putBucketDomain.php │ ├── putBucketGuetzli.php │ ├── putBucketImageStyle.php │ ├── putBucketInventory.php │ ├── putBucketLifecycle.php │ ├── putBucketLogging.php │ ├── putBucketReferer.php │ ├── putBucketTagging.php │ ├── putBucketWebsite.php │ ├── putImageStyle.php │ ├── putObject.php │ ├── putObjectTagging.php │ ├── putQrcode.php │ ├── qrcode.php │ ├── qrcodeGenerate.php │ ├── restoreObject.php │ ├── selectObjectContent.php │ ├── textWatermark.php │ ├── trafficLimit.php │ ├── triggerWorkflow.php │ ├── unBindCiService.php │ ├── updateDocProcessQueue.php │ ├── updateFileProcessQueue.php │ ├── updateMediaAnimationTemplate.php │ ├── updateMediaConcatTemplate.php │ ├── updateMediaHighSpeedHdTemplate.php │ ├── updateMediaPicProcessTemplate.php │ ├── updateMediaQueue.php │ ├── updateMediaSnapshotTemplate.php │ ├── updateMediaSuperResolutionTemplate.php │ ├── updateMediaTranscodeTemplate.php │ ├── updateMediaVideoMontageTemplate.php │ ├── updateMediaVideoProcessTemplate.php │ ├── updateMediaVoiceSeparateTemplate.php │ ├── updateMediaWatermarkTemplate.php │ ├── upload.php │ ├── uploadFolder.php │ └── uploadPart.php │ └── src │ ├── Client.php │ ├── CommandToRequestTransformer.php │ ├── Common.php │ ├── Copy.php │ ├── Descriptions.php │ ├── Exception │ ├── CosException.php │ └── ServiceResponseException.php │ ├── ExceptionMiddleware.php │ ├── ExceptionParser.php │ ├── ImageParamTemplate │ ├── BlindWatermarkTemplate.php │ ├── CIParamTransformation.php │ ├── CIProcessTransformation.php │ ├── ImageMogrTemplate.php │ ├── ImageQrcodeTemplate.php │ ├── ImageStyleTemplate.php │ ├── ImageTemplate.php │ ├── ImageViewTemplate.php │ ├── ImageWatermarkTemplate.php │ ├── PicOperationsTransformation.php │ └── TextWatermarkTemplate.php │ ├── MultipartUpload.php │ ├── RangeDownload.php │ ├── Request │ ├── BodyLocation.php │ └── XmlLocation.php │ ├── ResultTransformer.php │ ├── Serializer.php │ ├── Service.php │ ├── Signature.php │ └── SignatureMiddleware.php ├── qiniu └── php-sdk │ ├── .github │ └── workflows │ │ └── test-ci.yml │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── autoload.php │ ├── codecov.yml │ ├── composer.json │ ├── examples │ ├── README.md │ ├── bucket_lifecycleRule.php │ ├── cdn_get_bandwidth.php │ ├── cdn_get_flux.php │ ├── cdn_get_log_list.php │ ├── cdn_get_prefetch_list.php │ ├── cdn_get_refresh_list.php │ ├── cdn_refresh_urls_dirs.php │ ├── cdn_timestamp_antileech.php │ ├── censor_image.php │ ├── censor_video.php │ ├── delete_bucket.php │ ├── delete_bucketEvent.php │ ├── delete_bucketLifecycleRule.php │ ├── get_bucketEvents.php │ ├── get_bucketLifecycleRules.php │ ├── get_bucketList.php │ ├── get_bucketQuota.php │ ├── get_bucketinfo.php │ ├── get_bucketinfos.php │ ├── get_corsRules.php │ ├── image_url_builder.php │ ├── persistent_fop_init.php │ ├── persistent_fop_status.php │ ├── pfop_mkzip.php │ ├── pfop_vframe.php │ ├── pfop_video_avthumb.php │ ├── pfop_watermark.php │ ├── php-logo.png │ ├── prefop.php │ ├── put_bucketAccessMode.php │ ├── put_bucketAccessStyleMode.php │ ├── put_bucketEvent.php │ ├── put_bucketMaxAge.php │ ├── put_bucketQuota.php │ ├── put_referAntiLeech.php │ ├── qetag.php │ ├── rs_asynch_fetch.php │ ├── rs_batch_change_mime.php │ ├── rs_batch_change_type.php │ ├── rs_batch_copy.php │ ├── rs_batch_delete.php │ ├── rs_batch_delete_after_days.php │ ├── rs_batch_move.php │ ├── rs_batch_restore_ar.php │ ├── rs_batch_stat.php │ ├── rs_bucket_domains.php │ ├── rs_buckets.php │ ├── rs_change_mime.php │ ├── rs_change_status.php │ ├── rs_change_type.php │ ├── rs_copy.php │ ├── rs_delete.php │ ├── rs_delete_after_days.php │ ├── rs_download_urls.php │ ├── rs_fetch.php │ ├── rs_move.php │ ├── rs_prefetch.php │ ├── rs_restore.php │ ├── rs_stat.php │ ├── rsf_list_bucket.php │ ├── rsf_list_files.php │ ├── rsf_v2list_bucket.php │ ├── rtc │ │ ├── README.md │ │ ├── rtc_createApp.php │ │ ├── rtc_create_roomToken.php │ │ ├── rtc_deleteApp.php │ │ ├── rtc_getApp.php │ │ ├── rtc_rooms_kickUser.php │ │ ├── rtc_rooms_listActiveRooms.php │ │ ├── rtc_rooms_listUser.php │ │ ├── rtc_rooms_stopMerge.php │ │ └── rtc_updateApp.php │ ├── saveas.php │ ├── sms │ │ ├── README.md │ │ ├── sms_create_signature.php │ │ ├── sms_create_template.php │ │ ├── sms_delete_signature.php │ │ ├── sms_delete_template.php │ │ ├── sms_edit_signature.php │ │ ├── sms_edit_template.php │ │ ├── sms_query_send_sms.php │ │ ├── sms_query_signature.php │ │ ├── sms_query_single_signature.php │ │ ├── sms_query_single_template.php │ │ ├── sms_query_template.php │ │ └── sms_send_message.php │ ├── update_bucketEvent.php │ ├── update_bucketLifecycleRule.php │ ├── upload_and_callback.php │ ├── upload_and_pfop.php │ ├── upload_mgr_init.php │ ├── upload_multi_demos.php │ ├── upload_simple_file.php │ ├── upload_tokens.php │ ├── upload_verify_callback.php │ ├── upload_with_qvmzone.php │ └── upload_with_zone.php │ ├── phpunit.xml.dist │ ├── src │ └── Qiniu │ │ ├── Auth.php │ │ ├── Cdn │ │ └── CdnManager.php │ │ ├── Config.php │ │ ├── Enum │ │ ├── QiniuEnum.php │ │ └── SplitUploadVersion.php │ │ ├── Etag.php │ │ ├── Http │ │ ├── Client.php │ │ ├── Error.php │ │ ├── Header.php │ │ ├── Request.php │ │ ├── RequestOptions.php │ │ └── Response.php │ │ ├── Processing │ │ ├── ImageUrlBuilder.php │ │ ├── Operation.php │ │ └── PersistentFop.php │ │ ├── Region.php │ │ ├── Rtc │ │ └── AppClient.php │ │ ├── Sms │ │ └── Sms.php │ │ ├── Storage │ │ ├── ArgusManager.php │ │ ├── BucketManager.php │ │ ├── FormUploader.php │ │ ├── ResumeUploader.php │ │ └── UploadManager.php │ │ ├── Zone.php │ │ └── functions.php │ ├── test-env.sh │ └── tests │ ├── Qiniu │ └── Tests │ │ ├── AuthTest.php │ │ ├── Base64Test.php │ │ ├── BucketTest.php │ │ ├── CdnManagerTest.php │ │ ├── ConfigTest.php │ │ ├── Crc32Test.php │ │ ├── DownloadTest.php │ │ ├── EntryTest.php │ │ ├── EtagTest.php │ │ ├── FopTest.php │ │ ├── FormUpTest.php │ │ ├── HeaderTest.php │ │ ├── HttpTest.php │ │ ├── ImageUrlBuilderTest.php │ │ ├── PfopTest.php │ │ ├── ResumeUpTest.php │ │ └── ZoneTest.php │ ├── bootstrap.php │ └── mock-server │ ├── ok.php │ ├── redirect.php │ └── timeout.php ├── ralouphie └── getallheaders │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── getallheaders.php ├── sabre ├── dav │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── bin │ │ ├── build.php │ │ ├── googlecode_upload.py │ │ ├── migrateto20.php │ │ ├── migrateto21.php │ │ ├── migrateto30.php │ │ ├── migrateto32.php │ │ ├── naturalselection │ │ ├── sabredav │ │ └── sabredav.php │ ├── composer.json │ ├── examples │ │ ├── addressbookserver.php │ │ ├── calendarserver.php │ │ ├── fileserver.php │ │ ├── groupwareserver.php │ │ ├── minimal.php │ │ ├── sql │ │ │ ├── mysql.addressbooks.sql │ │ │ ├── mysql.calendars.sql │ │ │ ├── mysql.locks.sql │ │ │ ├── mysql.principals.sql │ │ │ ├── mysql.propertystorage.sql │ │ │ ├── mysql.users.sql │ │ │ ├── pgsql.addressbooks.sql │ │ │ ├── pgsql.calendars.sql │ │ │ ├── pgsql.locks.sql │ │ │ ├── pgsql.principals.sql │ │ │ ├── pgsql.propertystorage.sql │ │ │ ├── pgsql.users.sql │ │ │ ├── sqlite.addressbooks.sql │ │ │ ├── sqlite.calendars.sql │ │ │ ├── sqlite.locks.sql │ │ │ ├── sqlite.principals.sql │ │ │ ├── sqlite.propertystorage.sql │ │ │ └── sqlite.users.sql │ │ └── webserver │ │ │ ├── apache2_htaccess.conf │ │ │ ├── apache2_vhost.conf │ │ │ └── apache2_vhost_cgi.conf │ ├── lib │ │ ├── CalDAV │ │ │ ├── Backend │ │ │ │ ├── AbstractBackend.php │ │ │ │ ├── BackendInterface.php │ │ │ │ ├── NotificationSupport.php │ │ │ │ ├── PDO.php │ │ │ │ ├── SchedulingSupport.php │ │ │ │ ├── SharingSupport.php │ │ │ │ ├── SimplePDO.php │ │ │ │ ├── SubscriptionSupport.php │ │ │ │ └── SyncSupport.php │ │ │ ├── Calendar.php │ │ │ ├── CalendarHome.php │ │ │ ├── CalendarObject.php │ │ │ ├── CalendarQueryValidator.php │ │ │ ├── CalendarRoot.php │ │ │ ├── Exception │ │ │ │ └── InvalidComponentType.php │ │ │ ├── ICSExportPlugin.php │ │ │ ├── ICalendar.php │ │ │ ├── ICalendarObject.php │ │ │ ├── ICalendarObjectContainer.php │ │ │ ├── ISharedCalendar.php │ │ │ ├── Notifications │ │ │ │ ├── Collection.php │ │ │ │ ├── ICollection.php │ │ │ │ ├── INode.php │ │ │ │ ├── Node.php │ │ │ │ └── Plugin.php │ │ │ ├── Plugin.php │ │ │ ├── Principal │ │ │ │ ├── Collection.php │ │ │ │ ├── IProxyRead.php │ │ │ │ ├── IProxyWrite.php │ │ │ │ ├── ProxyRead.php │ │ │ │ ├── ProxyWrite.php │ │ │ │ └── User.php │ │ │ ├── Schedule │ │ │ │ ├── IInbox.php │ │ │ │ ├── IMipPlugin.php │ │ │ │ ├── IOutbox.php │ │ │ │ ├── ISchedulingObject.php │ │ │ │ ├── Inbox.php │ │ │ │ ├── Outbox.php │ │ │ │ ├── Plugin.php │ │ │ │ └── SchedulingObject.php │ │ │ ├── SharedCalendar.php │ │ │ ├── SharingPlugin.php │ │ │ ├── Subscriptions │ │ │ │ ├── ISubscription.php │ │ │ │ ├── Plugin.php │ │ │ │ └── Subscription.php │ │ │ └── Xml │ │ │ │ ├── Filter │ │ │ │ ├── CalendarData.php │ │ │ │ ├── CompFilter.php │ │ │ │ ├── ParamFilter.php │ │ │ │ └── PropFilter.php │ │ │ │ ├── Notification │ │ │ │ ├── Invite.php │ │ │ │ ├── InviteReply.php │ │ │ │ ├── NotificationInterface.php │ │ │ │ └── SystemStatus.php │ │ │ │ ├── Property │ │ │ │ ├── AllowedSharingModes.php │ │ │ │ ├── EmailAddressSet.php │ │ │ │ ├── Invite.php │ │ │ │ ├── ScheduleCalendarTransp.php │ │ │ │ ├── SupportedCalendarComponentSet.php │ │ │ │ ├── SupportedCalendarData.php │ │ │ │ └── SupportedCollationSet.php │ │ │ │ └── Request │ │ │ │ ├── CalendarMultiGetReport.php │ │ │ │ ├── CalendarQueryReport.php │ │ │ │ ├── FreeBusyQueryReport.php │ │ │ │ ├── InviteReply.php │ │ │ │ ├── MkCalendar.php │ │ │ │ └── Share.php │ │ ├── CardDAV │ │ │ ├── AddressBook.php │ │ │ ├── AddressBookHome.php │ │ │ ├── AddressBookRoot.php │ │ │ ├── Backend │ │ │ │ ├── AbstractBackend.php │ │ │ │ ├── BackendInterface.php │ │ │ │ ├── PDO.php │ │ │ │ └── SyncSupport.php │ │ │ ├── Card.php │ │ │ ├── IAddressBook.php │ │ │ ├── ICard.php │ │ │ ├── IDirectory.php │ │ │ ├── Plugin.php │ │ │ ├── VCFExportPlugin.php │ │ │ └── Xml │ │ │ │ ├── Filter │ │ │ │ ├── AddressData.php │ │ │ │ ├── ParamFilter.php │ │ │ │ └── PropFilter.php │ │ │ │ ├── Property │ │ │ │ ├── SupportedAddressData.php │ │ │ │ └── SupportedCollationSet.php │ │ │ │ └── Request │ │ │ │ ├── AddressBookMultiGetReport.php │ │ │ │ └── AddressBookQueryReport.php │ │ ├── DAV │ │ │ ├── Auth │ │ │ │ ├── Backend │ │ │ │ │ ├── AbstractBasic.php │ │ │ │ │ ├── AbstractBearer.php │ │ │ │ │ ├── AbstractDigest.php │ │ │ │ │ ├── Apache.php │ │ │ │ │ ├── BackendInterface.php │ │ │ │ │ ├── BasicCallBack.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── PDO.php │ │ │ │ └── Plugin.php │ │ │ ├── Browser │ │ │ │ ├── GuessContentType.php │ │ │ │ ├── HtmlOutput.php │ │ │ │ ├── HtmlOutputHelper.php │ │ │ │ ├── MapGetToPropFind.php │ │ │ │ ├── Plugin.php │ │ │ │ ├── PropFindAll.php │ │ │ │ └── assets │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── openiconic │ │ │ │ │ ├── ICON-LICENSE │ │ │ │ │ ├── open-iconic.css │ │ │ │ │ ├── open-iconic.eot │ │ │ │ │ ├── open-iconic.otf │ │ │ │ │ ├── open-iconic.svg │ │ │ │ │ ├── open-iconic.ttf │ │ │ │ │ └── open-iconic.woff │ │ │ │ │ ├── sabredav.css │ │ │ │ │ └── sabredav.png │ │ │ ├── Client.php │ │ │ ├── Collection.php │ │ │ ├── CorePlugin.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ │ ├── BadRequest.php │ │ │ │ ├── Conflict.php │ │ │ │ ├── ConflictingLock.php │ │ │ │ ├── Forbidden.php │ │ │ │ ├── InsufficientStorage.php │ │ │ │ ├── InvalidResourceType.php │ │ │ │ ├── InvalidSyncToken.php │ │ │ │ ├── LengthRequired.php │ │ │ │ ├── LockTokenMatchesRequestUri.php │ │ │ │ ├── Locked.php │ │ │ │ ├── MethodNotAllowed.php │ │ │ │ ├── NotAuthenticated.php │ │ │ │ ├── NotFound.php │ │ │ │ ├── NotImplemented.php │ │ │ │ ├── PaymentRequired.php │ │ │ │ ├── PreconditionFailed.php │ │ │ │ ├── ReportNotSupported.php │ │ │ │ ├── RequestedRangeNotSatisfiable.php │ │ │ │ ├── ServiceUnavailable.php │ │ │ │ ├── TooManyMatches.php │ │ │ │ └── UnsupportedMediaType.php │ │ │ ├── FS │ │ │ │ ├── Directory.php │ │ │ │ ├── File.php │ │ │ │ └── Node.php │ │ │ ├── FSExt │ │ │ │ ├── Directory.php │ │ │ │ └── File.php │ │ │ ├── File.php │ │ │ ├── ICollection.php │ │ │ ├── IExtendedCollection.php │ │ │ ├── IFile.php │ │ │ ├── IMoveTarget.php │ │ │ ├── IMultiGet.php │ │ │ ├── INode.php │ │ │ ├── IProperties.php │ │ │ ├── IQuota.php │ │ │ ├── Locks │ │ │ │ ├── Backend │ │ │ │ │ ├── AbstractBackend.php │ │ │ │ │ ├── BackendInterface.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── PDO.php │ │ │ │ ├── LockInfo.php │ │ │ │ └── Plugin.php │ │ │ ├── MkCol.php │ │ │ ├── Mount │ │ │ │ └── Plugin.php │ │ │ ├── Node.php │ │ │ ├── PartialUpdate │ │ │ │ ├── IPatchSupport.php │ │ │ │ └── Plugin.php │ │ │ ├── PropFind.php │ │ │ ├── PropPatch.php │ │ │ ├── PropertyStorage │ │ │ │ ├── Backend │ │ │ │ │ ├── BackendInterface.php │ │ │ │ │ └── PDO.php │ │ │ │ └── Plugin.php │ │ │ ├── Server.php │ │ │ ├── ServerPlugin.php │ │ │ ├── Sharing │ │ │ │ ├── ISharedNode.php │ │ │ │ └── Plugin.php │ │ │ ├── SimpleCollection.php │ │ │ ├── SimpleFile.php │ │ │ ├── StringUtil.php │ │ │ ├── Sync │ │ │ │ ├── ISyncCollection.php │ │ │ │ └── Plugin.php │ │ │ ├── TemporaryFileFilterPlugin.php │ │ │ ├── Tree.php │ │ │ ├── UUIDUtil.php │ │ │ ├── Version.php │ │ │ └── Xml │ │ │ │ ├── Element │ │ │ │ ├── Prop.php │ │ │ │ ├── Response.php │ │ │ │ └── Sharee.php │ │ │ │ ├── Property │ │ │ │ ├── Complex.php │ │ │ │ ├── GetLastModified.php │ │ │ │ ├── Href.php │ │ │ │ ├── Invite.php │ │ │ │ ├── LocalHref.php │ │ │ │ ├── LockDiscovery.php │ │ │ │ ├── ResourceType.php │ │ │ │ ├── ShareAccess.php │ │ │ │ ├── SupportedLock.php │ │ │ │ ├── SupportedMethodSet.php │ │ │ │ └── SupportedReportSet.php │ │ │ │ ├── Request │ │ │ │ ├── Lock.php │ │ │ │ ├── MkCol.php │ │ │ │ ├── PropFind.php │ │ │ │ ├── PropPatch.php │ │ │ │ ├── ShareResource.php │ │ │ │ └── SyncCollectionReport.php │ │ │ │ ├── Response │ │ │ │ └── MultiStatus.php │ │ │ │ └── Service.php │ │ └── DAVACL │ │ │ ├── ACLTrait.php │ │ │ ├── AbstractPrincipalCollection.php │ │ │ ├── Exception │ │ │ ├── AceConflict.php │ │ │ ├── NeedPrivileges.php │ │ │ ├── NoAbstract.php │ │ │ ├── NotRecognizedPrincipal.php │ │ │ └── NotSupportedPrivilege.php │ │ │ ├── FS │ │ │ ├── Collection.php │ │ │ ├── File.php │ │ │ └── HomeCollection.php │ │ │ ├── IACL.php │ │ │ ├── IPrincipal.php │ │ │ ├── IPrincipalCollection.php │ │ │ ├── Plugin.php │ │ │ ├── Principal.php │ │ │ ├── PrincipalBackend │ │ │ ├── AbstractBackend.php │ │ │ ├── BackendInterface.php │ │ │ ├── CreatePrincipalSupport.php │ │ │ └── PDO.php │ │ │ ├── PrincipalCollection.php │ │ │ └── Xml │ │ │ ├── Property │ │ │ ├── Acl.php │ │ │ ├── AclRestrictions.php │ │ │ ├── CurrentUserPrivilegeSet.php │ │ │ ├── Principal.php │ │ │ └── SupportedPrivilegeSet.php │ │ │ └── Request │ │ │ ├── AclPrincipalPropSetReport.php │ │ │ ├── ExpandPropertyReport.php │ │ │ ├── PrincipalMatchReport.php │ │ │ ├── PrincipalPropertySearchReport.php │ │ │ └── PrincipalSearchPropertySetReport.php │ └── tests │ │ ├── Sabre │ │ ├── CalDAV │ │ │ ├── Backend │ │ │ │ ├── AbstractPDOTest.php │ │ │ │ ├── AbstractTest.php │ │ │ │ ├── Mock.php │ │ │ │ ├── MockScheduling.php │ │ │ │ ├── MockSharing.php │ │ │ │ ├── MockSubscriptionSupport.php │ │ │ │ ├── PDOMySQLTest.php │ │ │ │ ├── PDOPgSqlTest.php │ │ │ │ ├── PDOSqliteTest.php │ │ │ │ └── SimplePDOTest.php │ │ │ ├── CalendarHomeNotificationsTest.php │ │ │ ├── CalendarHomeSharedCalendarsTest.php │ │ │ ├── CalendarHomeSubscriptionsTest.php │ │ │ ├── CalendarHomeTest.php │ │ │ ├── CalendarObjectTest.php │ │ │ ├── CalendarQueryVAlarmTest.php │ │ │ ├── CalendarQueryValidatorTest.php │ │ │ ├── CalendarTest.php │ │ │ ├── ExpandEventsDTSTARTandDTENDTest.php │ │ │ ├── ExpandEventsDTSTARTandDTENDbyDayTest.php │ │ │ ├── ExpandEventsDoubleEventsTest.php │ │ │ ├── ExpandEventsFloatingTimeTest.php │ │ │ ├── FreeBusyReportTest.php │ │ │ ├── GetEventsByTimerangeTest.php │ │ │ ├── ICSExportPluginTest.php │ │ │ ├── Issue166Test.php │ │ │ ├── Issue172Test.php │ │ │ ├── Issue203Test.php │ │ │ ├── Issue205Test.php │ │ │ ├── Issue211Test.php │ │ │ ├── Issue220Test.php │ │ │ ├── Issue228Test.php │ │ │ ├── JCalTransformTest.php │ │ │ ├── Notifications │ │ │ │ ├── CollectionTest.php │ │ │ │ ├── NodeTest.php │ │ │ │ └── PluginTest.php │ │ │ ├── PluginTest.php │ │ │ ├── Principal │ │ │ │ ├── CollectionTest.php │ │ │ │ ├── ProxyReadTest.php │ │ │ │ ├── ProxyWriteTest.php │ │ │ │ └── UserTest.php │ │ │ ├── Schedule │ │ │ │ ├── DeliverNewEventTest.php │ │ │ │ ├── FreeBusyRequestTest.php │ │ │ │ ├── IMip │ │ │ │ │ └── MockPlugin.php │ │ │ │ ├── IMipPluginTest.php │ │ │ │ ├── InboxTest.php │ │ │ │ ├── OutboxPostTest.php │ │ │ │ ├── OutboxTest.php │ │ │ │ ├── PluginBasicTest.php │ │ │ │ ├── PluginPropertiesTest.php │ │ │ │ ├── PluginPropertiesWithSharedCalendarTest.php │ │ │ │ ├── ScheduleDeliverTest.php │ │ │ │ └── SchedulingObjectTest.php │ │ │ ├── SharedCalendarTest.php │ │ │ ├── SharingPluginTest.php │ │ │ ├── Subscriptions │ │ │ │ ├── CreateSubscriptionTest.php │ │ │ │ ├── PluginTest.php │ │ │ │ └── SubscriptionTest.php │ │ │ ├── TestUtil.php │ │ │ ├── ValidateICalTest.php │ │ │ └── Xml │ │ │ │ ├── Notification │ │ │ │ ├── InviteReplyTest.php │ │ │ │ ├── InviteTest.php │ │ │ │ └── SystemStatusTest.php │ │ │ │ ├── Property │ │ │ │ ├── AllowedSharingModesTest.php │ │ │ │ ├── EmailAddressSetTest.php │ │ │ │ ├── InviteTest.php │ │ │ │ ├── ScheduleCalendarTranspTest.php │ │ │ │ ├── SupportedCalendarComponentSetTest.php │ │ │ │ ├── SupportedCalendarDataTest.php │ │ │ │ └── SupportedCollationSetTest.php │ │ │ │ └── Request │ │ │ │ ├── CalendarQueryReportTest.php │ │ │ │ ├── InviteReplyTest.php │ │ │ │ └── ShareTest.php │ │ ├── CardDAV │ │ │ ├── AbstractPluginTest.php │ │ │ ├── AddressBookHomeTest.php │ │ │ ├── AddressBookQueryTest.php │ │ │ ├── AddressBookRootTest.php │ │ │ ├── AddressBookTest.php │ │ │ ├── Backend │ │ │ │ ├── AbstractPDOTest.php │ │ │ │ ├── Mock.php │ │ │ │ ├── PDOMySQLTest.php │ │ │ │ ├── PDOPgSqlTest.php │ │ │ │ └── PDOSqliteTest.php │ │ │ ├── CardTest.php │ │ │ ├── IDirectoryTest.php │ │ │ ├── MultiGetTest.php │ │ │ ├── PluginTest.php │ │ │ ├── SogoStripContentTypeTest.php │ │ │ ├── TestUtil.php │ │ │ ├── VCFExportTest.php │ │ │ ├── ValidateFilterTest.php │ │ │ ├── ValidateVCardTest.php │ │ │ └── Xml │ │ │ │ ├── Property │ │ │ │ ├── SupportedAddressDataTest.php │ │ │ │ └── SupportedCollationSetTest.php │ │ │ │ └── Request │ │ │ │ ├── AddressBookMultiGetTest.php │ │ │ │ └── AddressBookQueryReportTest.php │ │ ├── DAV │ │ │ ├── AbstractServer.php │ │ │ ├── Auth │ │ │ │ ├── Backend │ │ │ │ │ ├── AbstractBasicTest.php │ │ │ │ │ ├── AbstractBearerTest.php │ │ │ │ │ ├── AbstractDigestTest.php │ │ │ │ │ ├── AbstractPDOTest.php │ │ │ │ │ ├── ApacheTest.php │ │ │ │ │ ├── BasicCallBackTest.php │ │ │ │ │ ├── FileTest.php │ │ │ │ │ ├── Mock.php │ │ │ │ │ ├── PDOMySQLTest.php │ │ │ │ │ ├── PDOPgSqlTest.php │ │ │ │ │ └── PDOSqliteTest.php │ │ │ │ └── PluginTest.php │ │ │ ├── BasicNodeTest.php │ │ │ ├── Browser │ │ │ │ ├── GuessContentTypeTest.php │ │ │ │ ├── MapGetToPropFindTest.php │ │ │ │ ├── PluginTest.php │ │ │ │ └── PropFindAllTest.php │ │ │ ├── ClientMock.php │ │ │ ├── ClientTest.php │ │ │ ├── CorePluginTest.php │ │ │ ├── DbTestHelperTrait.php │ │ │ ├── Exception │ │ │ │ ├── LockedTest.php │ │ │ │ ├── PaymentRequiredTest.php │ │ │ │ ├── ServiceUnavailableTest.php │ │ │ │ └── TooManyMatchesTest.php │ │ │ ├── ExceptionTest.php │ │ │ ├── FSExt │ │ │ │ ├── DirectoryTest.php │ │ │ │ ├── FileTest.php │ │ │ │ └── ServerTest.php │ │ │ ├── GetIfConditionsTest.php │ │ │ ├── HTTPPreferParsingTest.php │ │ │ ├── HttpCopyTest.php │ │ │ ├── HttpDeleteTest.php │ │ │ ├── HttpGetTest.php │ │ │ ├── HttpHeadTest.php │ │ │ ├── HttpMoveTest.php │ │ │ ├── HttpPutTest.php │ │ │ ├── Issue33Test.php │ │ │ ├── Locks │ │ │ │ ├── Backend │ │ │ │ │ ├── AbstractTest.php │ │ │ │ │ ├── FileTest.php │ │ │ │ │ ├── Mock.php │ │ │ │ │ ├── PDOMySQLTest.php │ │ │ │ │ ├── PDOPgSqlTest.php │ │ │ │ │ ├── PDOSqliteTest.php │ │ │ │ │ └── PDOTest.php │ │ │ │ ├── MSWordTest.php │ │ │ │ ├── Plugin2Test.php │ │ │ │ └── PluginTest.php │ │ │ ├── Mock │ │ │ │ ├── Collection.php │ │ │ │ ├── File.php │ │ │ │ ├── PropertiesCollection.php │ │ │ │ ├── SharedNode.php │ │ │ │ └── StreamingFile.php │ │ │ ├── MockLogger.php │ │ │ ├── Mount │ │ │ │ └── PluginTest.php │ │ │ ├── ObjectTreeTest.php │ │ │ ├── PSR3Test.php │ │ │ ├── PartialUpdate │ │ │ │ ├── FileMock.php │ │ │ │ ├── PluginTest.php │ │ │ │ └── SpecificationTest.php │ │ │ ├── PropFindTest.php │ │ │ ├── PropPatchTest.php │ │ │ ├── PropertyStorage │ │ │ │ ├── Backend │ │ │ │ │ ├── AbstractPDOTest.php │ │ │ │ │ ├── Mock.php │ │ │ │ │ ├── PDOMysqlTest.php │ │ │ │ │ ├── PDOPgSqlTest.php │ │ │ │ │ └── PDOSqliteTest.php │ │ │ │ └── PluginTest.php │ │ │ ├── ServerEventsTest.php │ │ │ ├── ServerMKCOLTest.php │ │ │ ├── ServerPluginTest.php │ │ │ ├── ServerPreconditionTest.php │ │ │ ├── ServerPropsInfiniteDepthTest.php │ │ │ ├── ServerPropsTest.php │ │ │ ├── ServerRangeTest.php │ │ │ ├── ServerSimpleTest.php │ │ │ ├── ServerUpdatePropertiesTest.php │ │ │ ├── Sharing │ │ │ │ ├── PluginTest.php │ │ │ │ └── ShareResourceTest.php │ │ │ ├── SimpleFileTest.php │ │ │ ├── StringUtilTest.php │ │ │ ├── Sync │ │ │ │ ├── MockSyncCollection.php │ │ │ │ └── PluginTest.php │ │ │ ├── SyncTokenPropertyTest.php │ │ │ ├── TemporaryFileFilterTest.php │ │ │ ├── TestPlugin.php │ │ │ ├── TreeTest.php │ │ │ ├── UUIDUtilTest.php │ │ │ └── Xml │ │ │ │ ├── Element │ │ │ │ ├── PropTest.php │ │ │ │ ├── ResponseTest.php │ │ │ │ └── ShareeTest.php │ │ │ │ ├── Property │ │ │ │ ├── HrefTest.php │ │ │ │ ├── InviteTest.php │ │ │ │ ├── LastModifiedTest.php │ │ │ │ ├── LocalHrefTest.php │ │ │ │ ├── LockDiscoveryTest.php │ │ │ │ ├── ShareAccessTest.php │ │ │ │ ├── SupportedMethodSetTest.php │ │ │ │ └── SupportedReportSetTest.php │ │ │ │ ├── Request │ │ │ │ ├── PropFindTest.php │ │ │ │ ├── PropPatchTest.php │ │ │ │ ├── ShareResourceTest.php │ │ │ │ └── SyncCollectionTest.php │ │ │ │ └── XmlTest.php │ │ ├── DAVACL │ │ │ ├── ACLMethodTest.php │ │ │ ├── AclPrincipalPropSetReportTest.php │ │ │ ├── AllowAccessTest.php │ │ │ ├── BlockAccessTest.php │ │ │ ├── Exception │ │ │ │ ├── AceConflictTest.php │ │ │ │ ├── NeedPrivilegesExceptionTest.php │ │ │ │ ├── NoAbstractTest.php │ │ │ │ ├── NotRecognizedPrincipalTest.php │ │ │ │ └── NotSupportedPrivilegeTest.php │ │ │ ├── ExpandPropertiesTest.php │ │ │ ├── FS │ │ │ │ ├── CollectionTest.php │ │ │ │ ├── FileTest.php │ │ │ │ └── HomeCollectionTest.php │ │ │ ├── MockACLNode.php │ │ │ ├── MockPrincipal.php │ │ │ ├── PluginAdminTest.php │ │ │ ├── PluginPropertiesTest.php │ │ │ ├── PluginUpdatePropertiesTest.php │ │ │ ├── PrincipalBackend │ │ │ │ ├── AbstractPDOTest.php │ │ │ │ ├── Mock.php │ │ │ │ ├── PDOMySQLTest.php │ │ │ │ ├── PDOPgSqlTest.php │ │ │ │ └── PDOSqliteTest.php │ │ │ ├── PrincipalCollectionTest.php │ │ │ ├── PrincipalMatchTest.php │ │ │ ├── PrincipalPropertySearchTest.php │ │ │ ├── PrincipalSearchPropertySetTest.php │ │ │ ├── PrincipalTest.php │ │ │ ├── SimplePluginTest.php │ │ │ └── Xml │ │ │ │ ├── Property │ │ │ │ ├── ACLTest.php │ │ │ │ ├── AclRestrictionsTest.php │ │ │ │ ├── CurrentUserPrivilegeSetTest.php │ │ │ │ ├── PrincipalTest.php │ │ │ │ └── SupportedPrivilegeSetTest.php │ │ │ │ └── Request │ │ │ │ ├── AclPrincipalPropSetReportTest.php │ │ │ │ └── PrincipalMatchReportTest.php │ │ ├── DAVServerTest.php │ │ ├── HTTP │ │ │ ├── ResponseMock.php │ │ │ └── SapiMock.php │ │ └── TestUtil.php │ │ ├── bootstrap.php │ │ ├── phpcs │ │ └── ruleset.xml │ │ └── phpunit.xml.dist ├── event │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── bin │ │ └── .empty │ ├── composer.json │ ├── examples │ │ ├── promise.php │ │ └── tail.php │ ├── lib │ │ ├── EventEmitter.php │ │ ├── EventEmitterInterface.php │ │ ├── EventEmitterTrait.php │ │ ├── Loop │ │ │ ├── Loop.php │ │ │ └── functions.php │ │ ├── Promise.php │ │ ├── Promise │ │ │ └── functions.php │ │ ├── PromiseAlreadyResolvedException.php │ │ ├── Version.php │ │ └── coroutine.php │ ├── phpunit.xml.dist │ └── tests │ │ ├── ContinueCallbackTest.php │ │ ├── CoroutineTest.php │ │ ├── EventEmitterTest.php │ │ ├── Loop │ │ ├── FunctionsTest.php │ │ └── LoopTest.php │ │ ├── Promise │ │ ├── FunctionsTest.php │ │ └── PromiseTest.php │ │ ├── PromiseTest.php │ │ └── benchmark │ │ └── bench.php ├── http │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── bin │ │ └── .empty │ ├── composer.json │ ├── examples │ │ ├── asyncclient.php │ │ ├── basicauth.php │ │ ├── client.php │ │ ├── digestauth.php │ │ ├── reverseproxy.php │ │ └── stringify.php │ ├── lib │ │ ├── Auth │ │ │ ├── AWS.php │ │ │ ├── AbstractAuth.php │ │ │ ├── Basic.php │ │ │ ├── Bearer.php │ │ │ └── Digest.php │ │ ├── Client.php │ │ ├── ClientException.php │ │ ├── ClientHttpException.php │ │ ├── HttpException.php │ │ ├── Message.php │ │ ├── MessageDecoratorTrait.php │ │ ├── MessageInterface.php │ │ ├── Request.php │ │ ├── RequestDecorator.php │ │ ├── RequestInterface.php │ │ ├── Response.php │ │ ├── ResponseDecorator.php │ │ ├── ResponseInterface.php │ │ ├── Sapi.php │ │ ├── URLUtil.php │ │ ├── Util.php │ │ ├── Version.php │ │ └── functions.php │ └── tests │ │ ├── HTTP │ │ ├── Auth │ │ │ ├── AWSTest.php │ │ │ ├── BasicTest.php │ │ │ ├── BearerTest.php │ │ │ └── DigestTest.php │ │ ├── ClientTest.php │ │ ├── FunctionsTest.php │ │ ├── MessageDecoratorTest.php │ │ ├── MessageTest.php │ │ ├── RequestDecoratorTest.php │ │ ├── RequestTest.php │ │ ├── ResponseDecoratorTest.php │ │ ├── ResponseTest.php │ │ ├── SapiTest.php │ │ ├── URLUtilTest.php │ │ └── UtilTest.php │ │ ├── bootstrap.php │ │ ├── phpcs │ │ └── ruleset.xml │ │ └── phpunit.xml ├── uri │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── lib │ │ ├── InvalidUriException.php │ │ ├── Version.php │ │ └── functions.php │ └── tests │ │ ├── BuildTest.php │ │ ├── NormalizeTest.php │ │ ├── ParseTest.php │ │ ├── ResolveTest.php │ │ ├── SplitTest.php │ │ ├── phpcs │ │ └── ruleset.xml │ │ └── phpunit.xml.dist ├── vobject │ ├── .gitignore │ ├── .php_cs.dist │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── bin │ │ ├── bench.php │ │ ├── bench_freebusygenerator.php │ │ ├── bench_manipulatevcard.php │ │ ├── fetch_windows_zones.php │ │ ├── generate_vcards │ │ ├── generateicalendardata.php │ │ ├── mergeduplicates.php │ │ ├── rrulebench.php │ │ └── vobject │ ├── composer.json │ ├── lib │ │ ├── BirthdayCalendarGenerator.php │ │ ├── Cli.php │ │ ├── Component.php │ │ ├── Component │ │ │ ├── Available.php │ │ │ ├── VAlarm.php │ │ │ ├── VAvailability.php │ │ │ ├── VCalendar.php │ │ │ ├── VCard.php │ │ │ ├── VEvent.php │ │ │ ├── VFreeBusy.php │ │ │ ├── VJournal.php │ │ │ ├── VTimeZone.php │ │ │ └── VTodo.php │ │ ├── DateTimeParser.php │ │ ├── Document.php │ │ ├── ElementList.php │ │ ├── EofException.php │ │ ├── FreeBusyData.php │ │ ├── FreeBusyGenerator.php │ │ ├── ITip │ │ │ ├── Broker.php │ │ │ ├── ITipException.php │ │ │ ├── Message.php │ │ │ └── SameOrganizerForAllComponentsException.php │ │ ├── InvalidDataException.php │ │ ├── Node.php │ │ ├── PHPUnitAssertions.php │ │ ├── Parameter.php │ │ ├── ParseException.php │ │ ├── Parser │ │ │ ├── Json.php │ │ │ ├── MimeDir.php │ │ │ ├── Parser.php │ │ │ ├── XML.php │ │ │ └── XML │ │ │ │ └── Element │ │ │ │ └── KeyValue.php │ │ ├── Property.php │ │ ├── Property │ │ │ ├── Binary.php │ │ │ ├── Boolean.php │ │ │ ├── FlatText.php │ │ │ ├── FloatValue.php │ │ │ ├── ICalendar │ │ │ │ ├── CalAddress.php │ │ │ │ ├── Date.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── Duration.php │ │ │ │ ├── Period.php │ │ │ │ └── Recur.php │ │ │ ├── IntegerValue.php │ │ │ ├── Text.php │ │ │ ├── Time.php │ │ │ ├── Unknown.php │ │ │ ├── Uri.php │ │ │ ├── UtcOffset.php │ │ │ └── VCard │ │ │ │ ├── Date.php │ │ │ │ ├── DateAndOrTime.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── LanguageTag.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── TimeStamp.php │ │ ├── Reader.php │ │ ├── Recur │ │ │ ├── EventIterator.php │ │ │ ├── MaxInstancesExceededException.php │ │ │ ├── NoInstancesException.php │ │ │ ├── RDateIterator.php │ │ │ └── RRuleIterator.php │ │ ├── Settings.php │ │ ├── Splitter │ │ │ ├── ICalendar.php │ │ │ ├── SplitterInterface.php │ │ │ └── VCard.php │ │ ├── StringUtil.php │ │ ├── TimeZoneUtil.php │ │ ├── UUIDUtil.php │ │ ├── VCardConverter.php │ │ ├── Version.php │ │ ├── Writer.php │ │ └── timezonedata │ │ │ ├── exchangezones.php │ │ │ ├── lotuszones.php │ │ │ ├── php-bc.php │ │ │ ├── php-workaround.php │ │ │ └── windowszones.php │ ├── phpstan.neon │ ├── resources │ │ └── schema │ │ │ ├── xcal.rng │ │ │ └── xcard.rng │ └── tests │ │ ├── VObject │ │ ├── AttachIssueTest.php │ │ ├── BirthdayCalendarGeneratorTest.php │ │ ├── CliTest.php │ │ ├── Component │ │ │ ├── AvailableTest.php │ │ │ ├── VAlarmTest.php │ │ │ ├── VAvailabilityTest.php │ │ │ ├── VCalendarTest.php │ │ │ ├── VCardTest.php │ │ │ ├── VEventTest.php │ │ │ ├── VFreeBusyTest.php │ │ │ ├── VJournalTest.php │ │ │ ├── VTimeZoneTest.php │ │ │ └── VTodoTest.php │ │ ├── ComponentTest.php │ │ ├── DateTimeParserTest.php │ │ ├── DocumentTest.php │ │ ├── ElementListTest.php │ │ ├── EmClientTest.php │ │ ├── EmptyParameterTest.php │ │ ├── EmptyValueIssueTest.php │ │ ├── FreeBusyDataTest.php │ │ ├── FreeBusyGeneratorTest.php │ │ ├── GoogleColonEscapingTest.php │ │ ├── ICalendar │ │ │ └── AttachParseTest.php │ │ ├── ITip │ │ │ ├── BrokerAttendeeReplyTest.php │ │ │ ├── BrokerDeleteEventTest.php │ │ │ ├── BrokerNewEventTest.php │ │ │ ├── BrokerProcessMessageTest.php │ │ │ ├── BrokerProcessReplyTest.php │ │ │ ├── BrokerSignificantChangesTest.php │ │ │ ├── BrokerTester.php │ │ │ ├── BrokerTimezoneInParseEventInfoWithoutMasterTest.php │ │ │ ├── BrokerUpdateEventTest.php │ │ │ ├── EvolutionTest.php │ │ │ └── MessageTest.php │ │ ├── Issue153Test.php │ │ ├── Issue259Test.php │ │ ├── Issue36WorkAroundTest.php │ │ ├── Issue40Test.php │ │ ├── Issue64Test.php │ │ ├── Issue96Test.php │ │ ├── IssueUndefinedIndexTest.php │ │ ├── JCalTest.php │ │ ├── JCardTest.php │ │ ├── LineFoldingIssueTest.php │ │ ├── ParameterTest.php │ │ ├── Parser │ │ │ ├── JsonTest.php │ │ │ ├── MimeDirTest.php │ │ │ ├── QuotedPrintableTest.php │ │ │ └── XmlTest.php │ │ ├── Property │ │ │ ├── BinaryTest.php │ │ │ ├── BooleanTest.php │ │ │ ├── CompoundTest.php │ │ │ ├── FloatTest.php │ │ │ ├── ICalendar │ │ │ │ ├── CalAddressTest.php │ │ │ │ ├── DateTimeTest.php │ │ │ │ ├── DurationTest.php │ │ │ │ └── RecurTest.php │ │ │ ├── TextTest.php │ │ │ ├── UriTest.php │ │ │ └── VCard │ │ │ │ ├── DateAndOrTimeTest.php │ │ │ │ ├── LanguageTagTest.php │ │ │ │ └── PhoneNumberTest.php │ │ ├── PropertyTest.php │ │ ├── ReaderTest.php │ │ ├── Recur │ │ │ ├── EventIterator │ │ │ │ ├── ByMonthInDailyTest.php │ │ │ │ ├── BySetPosHangTest.php │ │ │ │ ├── ExpandFloatingTimesTest.php │ │ │ │ ├── FifthTuesdayProblemTest.php │ │ │ │ ├── HandleRDateExpandTest.php │ │ │ │ ├── IncorrectExpandTest.php │ │ │ │ ├── InfiniteLoopProblemTest.php │ │ │ │ ├── Issue26Test.php │ │ │ │ ├── Issue48Test.php │ │ │ │ ├── Issue50Test.php │ │ │ │ ├── MainTest.php │ │ │ │ ├── MaxInstancesTest.php │ │ │ │ ├── MissingOverriddenTest.php │ │ │ │ ├── NoInstancesTest.php │ │ │ │ ├── OverrideFirstEventTest.php │ │ │ │ └── SameDateForRecurringEventsTest.php │ │ │ ├── RDateIteratorTest.php │ │ │ └── RRuleIteratorTest.php │ │ ├── RecurrenceIterator │ │ │ └── UntilRespectsTimezoneTest.ics │ │ ├── SlashRTest.php │ │ ├── Splitter │ │ │ ├── ICalendarTest.php │ │ │ └── VCardTest.php │ │ ├── StringUtilTest.php │ │ ├── TimeZoneUtilTest.php │ │ ├── UUIDUtilTest.php │ │ ├── VCard21Test.php │ │ ├── VCardConverterTest.php │ │ ├── VersionTest.php │ │ ├── WriterTest.php │ │ ├── issue153.vcf │ │ └── issue64.vcf │ │ ├── bootstrap.php │ │ └── phpunit.xml └── xml │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── bin │ └── .empty │ ├── composer.json │ ├── lib │ ├── ContextStackTrait.php │ ├── Deserializer │ │ └── functions.php │ ├── Element.php │ ├── Element │ │ ├── Base.php │ │ ├── Cdata.php │ │ ├── Elements.php │ │ ├── KeyValue.php │ │ ├── Uri.php │ │ └── XmlFragment.php │ ├── LibXMLException.php │ ├── ParseException.php │ ├── Reader.php │ ├── Serializer │ │ └── functions.php │ ├── Service.php │ ├── Version.php │ ├── Writer.php │ ├── XmlDeserializable.php │ └── XmlSerializable.php │ └── tests │ ├── Sabre │ └── Xml │ │ ├── ContextStackTest.php │ │ ├── Deserializer │ │ ├── EnumTest.php │ │ ├── KeyValueTest.php │ │ ├── RepeatingElementsTest.php │ │ └── ValueObjectTest.php │ │ ├── Element │ │ ├── CDataTest.php │ │ ├── Eater.php │ │ ├── ElementsTest.php │ │ ├── KeyValueTest.php │ │ ├── Mock.php │ │ ├── UriTest.php │ │ └── XmlFragmentTest.php │ │ ├── InfiteLoopTest.php │ │ ├── ReaderTest.php │ │ ├── Serializer │ │ ├── EnumTest.php │ │ └── RepeatingElementsTest.php │ │ ├── ServiceTest.php │ │ └── WriterTest.php │ ├── phpcs │ └── ruleset.xml │ └── phpunit.xml.dist ├── spatie └── dropbox-api │ ├── .github │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE │ │ └── config.yml │ ├── dependabot.yml │ └── workflows │ │ ├── dependabot-auto-merge.yml │ │ ├── php-cs-fixer.yml │ │ ├── run-tests.yml │ │ └── update-changelog.yml │ ├── .php_cs.dist.php │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ └── src │ ├── Client.php │ ├── Exceptions │ └── BadRequest.php │ ├── InMemoryTokenProvider.php │ ├── RefreshableTokenProvider.php │ ├── TokenProvider.php │ └── UploadSessionCursor.php ├── symfony ├── event-dispatcher │ ├── .gitignore │ ├── CHANGELOG.md │ ├── ContainerAwareEventDispatcher.php │ ├── Debug │ │ ├── TraceableEventDispatcher.php │ │ ├── TraceableEventDispatcherInterface.php │ │ └── WrappedListener.php │ ├── DependencyInjection │ │ └── RegisterListenersPass.php │ ├── Event.php │ ├── EventDispatcher.php │ ├── EventDispatcherInterface.php │ ├── EventSubscriberInterface.php │ ├── GenericEvent.php │ ├── ImmutableEventDispatcher.php │ ├── LICENSE │ ├── README.md │ ├── Tests │ │ ├── AbstractEventDispatcherTest.php │ │ ├── ContainerAwareEventDispatcherTest.php │ │ ├── Debug │ │ │ └── TraceableEventDispatcherTest.php │ │ ├── DependencyInjection │ │ │ └── RegisterListenersPassTest.php │ │ ├── EventDispatcherTest.php │ │ ├── EventTest.php │ │ ├── GenericEventTest.php │ │ └── ImmutableEventDispatcherTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── polyfill-intl-idn │ ├── Idn.php │ ├── Info.php │ ├── LICENSE │ ├── README.md │ ├── Resources │ │ └── unidata │ │ │ ├── DisallowedRanges.php │ │ │ ├── Regex.php │ │ │ ├── deviation.php │ │ │ ├── disallowed.php │ │ │ ├── disallowed_STD3_mapped.php │ │ │ ├── disallowed_STD3_valid.php │ │ │ ├── ignored.php │ │ │ ├── mapped.php │ │ │ └── virama.php │ ├── bootstrap.php │ ├── bootstrap80.php │ └── composer.json ├── polyfill-intl-normalizer │ ├── LICENSE │ ├── Normalizer.php │ ├── README.md │ ├── Resources │ │ ├── stubs │ │ │ └── Normalizer.php │ │ └── unidata │ │ │ ├── canonicalComposition.php │ │ │ ├── canonicalDecomposition.php │ │ │ ├── combiningClass.php │ │ │ └── compatibilityDecomposition.php │ ├── bootstrap.php │ ├── bootstrap80.php │ └── composer.json ├── polyfill-mbstring │ ├── LICENSE │ ├── Mbstring.php │ ├── README.md │ ├── Resources │ │ └── unidata │ │ │ ├── lowerCase.php │ │ │ ├── titleCaseRegexp.php │ │ │ └── upperCase.php │ ├── bootstrap.php │ ├── bootstrap80.php │ └── composer.json ├── polyfill-php72 │ ├── LICENSE │ ├── Php72.php │ ├── README.md │ ├── bootstrap.php │ └── composer.json ├── polyfill-php80 │ ├── LICENSE │ ├── Php80.php │ ├── PhpToken.php │ ├── README.md │ ├── Resources │ │ └── stubs │ │ │ ├── Attribute.php │ │ │ ├── PhpToken.php │ │ │ ├── Stringable.php │ │ │ ├── UnhandledMatchError.php │ │ │ └── ValueError.php │ ├── bootstrap.php │ └── composer.json └── var-dumper │ ├── CHANGELOG.md │ ├── Caster │ ├── AmqpCaster.php │ ├── ArgsStub.php │ ├── Caster.php │ ├── ClassStub.php │ ├── ConstStub.php │ ├── CutArrayStub.php │ ├── CutStub.php │ ├── DOMCaster.php │ ├── DateCaster.php │ ├── DoctrineCaster.php │ ├── DsCaster.php │ ├── DsPairStub.php │ ├── EnumStub.php │ ├── ExceptionCaster.php │ ├── FrameStub.php │ ├── GmpCaster.php │ ├── ImagineCaster.php │ ├── ImgStub.php │ ├── IntlCaster.php │ ├── LinkStub.php │ ├── MemcachedCaster.php │ ├── MysqliCaster.php │ ├── PdoCaster.php │ ├── PgSqlCaster.php │ ├── ProxyManagerCaster.php │ ├── RedisCaster.php │ ├── ReflectionCaster.php │ ├── ResourceCaster.php │ ├── SplCaster.php │ ├── StubCaster.php │ ├── SymfonyCaster.php │ ├── TraceStub.php │ ├── UuidCaster.php │ ├── XmlReaderCaster.php │ └── XmlResourceCaster.php │ ├── Cloner │ ├── AbstractCloner.php │ ├── ClonerInterface.php │ ├── Cursor.php │ ├── Data.php │ ├── DumperInterface.php │ ├── Stub.php │ └── VarCloner.php │ ├── Command │ ├── Descriptor │ │ ├── CliDescriptor.php │ │ ├── DumpDescriptorInterface.php │ │ └── HtmlDescriptor.php │ └── ServerDumpCommand.php │ ├── Dumper │ ├── AbstractDumper.php │ ├── CliDumper.php │ ├── ContextProvider │ │ ├── CliContextProvider.php │ │ ├── ContextProviderInterface.php │ │ ├── RequestContextProvider.php │ │ └── SourceContextProvider.php │ ├── ContextualizedDumper.php │ ├── DataDumperInterface.php │ ├── HtmlDumper.php │ └── ServerDumper.php │ ├── Exception │ └── ThrowingCasterException.php │ ├── LICENSE │ ├── README.md │ ├── Resources │ ├── bin │ │ └── var-dump-server │ ├── css │ │ └── htmlDescriptor.css │ ├── functions │ │ └── dump.php │ └── js │ │ └── htmlDescriptor.js │ ├── Server │ ├── Connection.php │ └── DumpServer.php │ ├── Test │ └── VarDumperTestTrait.php │ ├── VarDumper.php │ └── composer.json ├── tightenco └── collect │ ├── composer.json │ └── src │ └── Collect │ ├── Contracts │ └── Support │ │ ├── Arrayable.php │ │ ├── Htmlable.php │ │ └── Jsonable.php │ └── Support │ ├── Arr.php │ ├── Collection.php │ ├── HigherOrderCollectionProxy.php │ ├── HtmlString.php │ ├── Traits │ └── Macroable.php │ ├── alias.php │ └── helpers.php ├── upyun └── sdk │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── RoboFile.php │ ├── composer.json │ └── src │ └── Upyun │ ├── Api │ ├── Form.php │ ├── Pretreat.php │ ├── Rest.php │ └── SyncVideo.php │ ├── Config.php │ ├── Signature.php │ ├── Uploader.php │ ├── Upyun.php │ └── Util.php └── yunify └── qingstor-sdk ├── .editorconfig ├── .gitignore ├── .gitmodules ├── .travis.yml ├── AUTHORS ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── composer.json ├── docs ├── code_of_conduct.md ├── configuration.md ├── contributing.md ├── installation.md └── qingstor_service_usage.md ├── index.php ├── scenarios ├── BucketContext.php ├── ObjectContext.php ├── ServiceContext.php ├── behat.yml └── composer.json ├── src ├── Builder.php ├── Client │ └── ImageProcessClient.php ├── Config.php ├── Exception │ ├── ParameterRequiredException.php │ └── ParameterValueNotAllowedException.php ├── Handler │ ├── GuzzleV5 │ │ ├── GuzzleHandler.php │ │ ├── GuzzleStream.php │ │ └── PsrStream.php │ └── GuzzleV6 │ │ └── GuzzleHandler.php ├── Logger.php ├── QingStor │ ├── Bucket.php │ └── QingStor.php ├── Request.php └── Unpacker.php ├── template ├── manifest.yaml ├── service.tmpl ├── shared.tmpl └── sub_service.tmpl └── tests ├── BuilderTest.php ├── ConfigTest.php ├── RequestTest.php ├── UnpackerTest.php └── client └── ImageProcessClientTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/README.md -------------------------------------------------------------------------------- /accessorys/PicUploaderHelper/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/accessorys/PicUploaderHelper/config.json -------------------------------------------------------------------------------- /accessorys/PicUploaderHelper/config_win.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/accessorys/PicUploaderHelper/config_win.json -------------------------------------------------------------------------------- /accessorys/PicUploaderHelper/generatesh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/accessorys/PicUploaderHelper/generatesh.sh -------------------------------------------------------------------------------- /accessorys/PicUploaderHelper/notification.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/accessorys/PicUploaderHelper/notification.ps1 -------------------------------------------------------------------------------- /accessorys/add-right-click-menu-utf8.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/accessorys/add-right-click-menu-utf8.bat -------------------------------------------------------------------------------- /accessorys/add-right-click-menu.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/accessorys/add-right-click-menu.bat -------------------------------------------------------------------------------- /accessorys/api.picuploader.com-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/accessorys/api.picuploader.com-key.pem -------------------------------------------------------------------------------- /accessorys/api.picuploader.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/accessorys/api.picuploader.com.pem -------------------------------------------------------------------------------- /auth/AzureRedirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/auth/AzureRedirect.php -------------------------------------------------------------------------------- /auth/DropboxRedirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/auth/DropboxRedirect.php -------------------------------------------------------------------------------- /auth/GoogledriveRedirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/auth/GoogledriveRedirect.php -------------------------------------------------------------------------------- /auth/ImgurRedirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/auth/ImgurRedirect.php -------------------------------------------------------------------------------- /auth/OnedriveRedirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/auth/OnedriveRedirect.php -------------------------------------------------------------------------------- /common/EasyImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/common/EasyImage.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/composer.lock -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/config/config.php -------------------------------------------------------------------------------- /dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/dashboard.php -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/index.php -------------------------------------------------------------------------------- /settings/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/settings/Controller.php -------------------------------------------------------------------------------- /settings/DbModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/settings/DbModel.php -------------------------------------------------------------------------------- /settings/HistoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/settings/HistoryController.php -------------------------------------------------------------------------------- /settings/HistoryModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/settings/HistoryModel.php -------------------------------------------------------------------------------- /settings/PicUploader-mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/settings/PicUploader-mysql.sql -------------------------------------------------------------------------------- /settings/PicUploader-sqlite3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/settings/PicUploader-sqlite3.sql -------------------------------------------------------------------------------- /settings/PicUploader-tpl.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/settings/PicUploader-tpl.db -------------------------------------------------------------------------------- /settings/SQLite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/settings/SQLite.php -------------------------------------------------------------------------------- /settings/SettingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/settings/SettingController.php -------------------------------------------------------------------------------- /settings/dispatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/settings/dispatch.php -------------------------------------------------------------------------------- /settings/history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/settings/history.php -------------------------------------------------------------------------------- /static/ImageViewer/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/ImageViewer/MIT-LICENSE.txt -------------------------------------------------------------------------------- /static/ImageViewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/ImageViewer/README.md -------------------------------------------------------------------------------- /static/ImageViewer/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/ImageViewer/bower.json -------------------------------------------------------------------------------- /static/ImageViewer/demo/container-mode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/ImageViewer/demo/container-mode.html -------------------------------------------------------------------------------- /static/ImageViewer/demo/full-screen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/ImageViewer/demo/full-screen.html -------------------------------------------------------------------------------- /static/ImageViewer/demo/image-mode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/ImageViewer/demo/image-mode.html -------------------------------------------------------------------------------- /static/ImageViewer/demo/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/ImageViewer/demo/images/1.jpg -------------------------------------------------------------------------------- /static/ImageViewer/demo/images/1_big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/ImageViewer/demo/images/1_big.jpg -------------------------------------------------------------------------------- /static/ImageViewer/demo/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/ImageViewer/demo/images/2.jpg -------------------------------------------------------------------------------- /static/ImageViewer/demo/images/2_big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/ImageViewer/demo/images/2_big.jpg -------------------------------------------------------------------------------- /static/ImageViewer/demo/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/ImageViewer/demo/images/3.jpg -------------------------------------------------------------------------------- /static/ImageViewer/demo/images/3_big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/ImageViewer/demo/images/3_big.jpg -------------------------------------------------------------------------------- /static/ImageViewer/demo/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/ImageViewer/demo/images/4.jpg -------------------------------------------------------------------------------- /static/ImageViewer/demo/images/4_big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/ImageViewer/demo/images/4_big.jpg -------------------------------------------------------------------------------- /static/ImageViewer/demo/images/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/ImageViewer/demo/images/left.svg -------------------------------------------------------------------------------- /static/ImageViewer/demo/images/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/ImageViewer/demo/images/right.svg -------------------------------------------------------------------------------- /static/ImageViewer/imageviewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/ImageViewer/imageviewer.css -------------------------------------------------------------------------------- /static/ImageViewer/imageviewer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/ImageViewer/imageviewer.jpg -------------------------------------------------------------------------------- /static/ImageViewer/imageviewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/ImageViewer/imageviewer.js -------------------------------------------------------------------------------- /static/ImageViewer/imageviewer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/ImageViewer/imageviewer.min.js -------------------------------------------------------------------------------- /static/Spectrum-ColorPicker/ReadMe.txt: -------------------------------------------------------------------------------- 1 | From https://bgrins.github.io/spectrum/ -------------------------------------------------------------------------------- /static/Spectrum-ColorPicker/spectrum.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/Spectrum-ColorPicker/spectrum.css -------------------------------------------------------------------------------- /static/Spectrum-ColorPicker/spectrum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/Spectrum-ColorPicker/spectrum.js -------------------------------------------------------------------------------- /static/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/cacert.pem -------------------------------------------------------------------------------- /static/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/css/dashboard.css -------------------------------------------------------------------------------- /static/font-awesome-4.7.0/HELP-US-OUT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/font-awesome-4.7.0/HELP-US-OUT.txt -------------------------------------------------------------------------------- /static/font-awesome-4.7.0/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/font-awesome-4.7.0/css/font-awesome.css -------------------------------------------------------------------------------- /static/font-awesome-4.7.0/less/animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/font-awesome-4.7.0/less/animated.less -------------------------------------------------------------------------------- /static/font-awesome-4.7.0/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/font-awesome-4.7.0/less/core.less -------------------------------------------------------------------------------- /static/font-awesome-4.7.0/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/font-awesome-4.7.0/less/icons.less -------------------------------------------------------------------------------- /static/font-awesome-4.7.0/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/font-awesome-4.7.0/less/larger.less -------------------------------------------------------------------------------- /static/font-awesome-4.7.0/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/font-awesome-4.7.0/less/list.less -------------------------------------------------------------------------------- /static/font-awesome-4.7.0/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/font-awesome-4.7.0/less/mixins.less -------------------------------------------------------------------------------- /static/font-awesome-4.7.0/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/font-awesome-4.7.0/less/path.less -------------------------------------------------------------------------------- /static/font-awesome-4.7.0/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/font-awesome-4.7.0/less/stacked.less -------------------------------------------------------------------------------- /static/font-awesome-4.7.0/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/font-awesome-4.7.0/less/variables.less -------------------------------------------------------------------------------- /static/font-awesome-4.7.0/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/font-awesome-4.7.0/scss/_animated.scss -------------------------------------------------------------------------------- /static/font-awesome-4.7.0/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/font-awesome-4.7.0/scss/_core.scss -------------------------------------------------------------------------------- /static/font-awesome-4.7.0/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/font-awesome-4.7.0/scss/_icons.scss -------------------------------------------------------------------------------- /static/font-awesome-4.7.0/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/font-awesome-4.7.0/scss/_larger.scss -------------------------------------------------------------------------------- /static/font-awesome-4.7.0/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/font-awesome-4.7.0/scss/_list.scss -------------------------------------------------------------------------------- /static/font-awesome-4.7.0/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/font-awesome-4.7.0/scss/_mixins.scss -------------------------------------------------------------------------------- /static/font-awesome-4.7.0/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/font-awesome-4.7.0/scss/_path.scss -------------------------------------------------------------------------------- /static/font-awesome-4.7.0/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/font-awesome-4.7.0/scss/_stacked.scss -------------------------------------------------------------------------------- /static/font-awesome-4.7.0/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/font-awesome-4.7.0/scss/_variables.scss -------------------------------------------------------------------------------- /static/images/PicUploader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/images/PicUploader.jpg -------------------------------------------------------------------------------- /static/images/PicUploader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/images/PicUploader.png -------------------------------------------------------------------------------- /static/images/clippy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/images/clippy.svg -------------------------------------------------------------------------------- /static/images/upload.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/images/upload.jpg -------------------------------------------------------------------------------- /static/js/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/js/clipboard.js -------------------------------------------------------------------------------- /static/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/js/common.js -------------------------------------------------------------------------------- /static/js/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/js/dashboard.js -------------------------------------------------------------------------------- /static/js/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/js/history.js -------------------------------------------------------------------------------- /static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/js/jquery.min.js -------------------------------------------------------------------------------- /static/js/paste.image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/js/paste.image.js -------------------------------------------------------------------------------- /static/rgbaColorPicker/rgbaColorPicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/rgbaColorPicker/rgbaColorPicker.css -------------------------------------------------------------------------------- /static/rgbaColorPicker/rgbaColorPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/rgbaColorPicker/rgbaColorPicker.js -------------------------------------------------------------------------------- /static/rgbaColorPicker/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/rgbaColorPicker/test.html -------------------------------------------------------------------------------- /static/watermark/jdchj.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/watermark/jdchj.ttf -------------------------------------------------------------------------------- /static/watermark/watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/static/watermark/watermark.png -------------------------------------------------------------------------------- /thirdpart/ks3-php-sdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ks3-php-sdk/.gitignore -------------------------------------------------------------------------------- /thirdpart/ks3-php-sdk/Ks3Client.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ks3-php-sdk/Ks3Client.class.php -------------------------------------------------------------------------------- /thirdpart/ks3-php-sdk/config/Consts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ks3-php-sdk/config/Consts.php -------------------------------------------------------------------------------- /thirdpart/ks3-php-sdk/core/API.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ks3-php-sdk/core/API.php -------------------------------------------------------------------------------- /thirdpart/ks3-php-sdk/core/Builders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ks3-php-sdk/core/Builders.php -------------------------------------------------------------------------------- /thirdpart/ks3-php-sdk/core/Handlers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ks3-php-sdk/core/Handlers.php -------------------------------------------------------------------------------- /thirdpart/ks3-php-sdk/core/Headers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ks3-php-sdk/core/Headers.php -------------------------------------------------------------------------------- /thirdpart/ks3-php-sdk/core/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ks3-php-sdk/core/Logger.php -------------------------------------------------------------------------------- /thirdpart/ks3-php-sdk/core/MessageHolder.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdpart/ks3-php-sdk/core/Signers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ks3-php-sdk/core/Signers.php -------------------------------------------------------------------------------- /thirdpart/ks3-php-sdk/core/Utils.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ks3-php-sdk/core/Utils.class.php -------------------------------------------------------------------------------- /thirdpart/ks3-php-sdk/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ks3-php-sdk/readme.md -------------------------------------------------------------------------------- /thirdpart/ks3-php-sdk/samples/FormUpload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ks3-php-sdk/samples/FormUpload.php -------------------------------------------------------------------------------- /thirdpart/ks3-php-sdk/samples/Samples.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ks3-php-sdk/samples/Samples.php -------------------------------------------------------------------------------- /thirdpart/ks3-php-sdk/samples/secret.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ks3-php-sdk/samples/secret.key -------------------------------------------------------------------------------- /thirdpart/ks3-php-sdk/unit/PUnit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ks3-php-sdk/unit/PUnit.php -------------------------------------------------------------------------------- /thirdpart/ks3-php-sdk/unit/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ks3-php-sdk/unit/Test.php -------------------------------------------------------------------------------- /thirdpart/ks3-php-sdk/unit/TestUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ks3-php-sdk/unit/TestUtil.php -------------------------------------------------------------------------------- /thirdpart/ks3-php-sdk/unit/cache/test_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ks3-php-sdk/unit/cache/test_file -------------------------------------------------------------------------------- /thirdpart/ks3-php-sdk/unit/secret.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ks3-php-sdk/unit/secret.key -------------------------------------------------------------------------------- /thirdpart/ks3-php-sdk/更新日志.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ks3-php-sdk/更新日志.txt -------------------------------------------------------------------------------- /thirdpart/ufile-phpsdk/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ufile-phpsdk/CHANGELOG.md -------------------------------------------------------------------------------- /thirdpart/ufile-phpsdk/v1/demo/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ufile-phpsdk/v1/demo/delete.php -------------------------------------------------------------------------------- /thirdpart/ufile-phpsdk/v1/demo/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ufile-phpsdk/v1/demo/get.php -------------------------------------------------------------------------------- /thirdpart/ufile-phpsdk/v1/demo/multipart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ufile-phpsdk/v1/demo/multipart.php -------------------------------------------------------------------------------- /thirdpart/ufile-phpsdk/v1/demo/mupload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ufile-phpsdk/v1/demo/mupload.php -------------------------------------------------------------------------------- /thirdpart/ufile-phpsdk/v1/demo/put.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ufile-phpsdk/v1/demo/put.php -------------------------------------------------------------------------------- /thirdpart/ufile-phpsdk/v1/demo/uploadhit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ufile-phpsdk/v1/demo/uploadhit.php -------------------------------------------------------------------------------- /thirdpart/ufile-phpsdk/v1/ucloud/conf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ufile-phpsdk/v1/ucloud/conf.php -------------------------------------------------------------------------------- /thirdpart/ufile-phpsdk/v1/ucloud/digest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ufile-phpsdk/v1/ucloud/digest.php -------------------------------------------------------------------------------- /thirdpart/ufile-phpsdk/v1/ucloud/http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ufile-phpsdk/v1/ucloud/http.php -------------------------------------------------------------------------------- /thirdpart/ufile-phpsdk/v1/ucloud/mimetypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ufile-phpsdk/v1/ucloud/mimetypes.php -------------------------------------------------------------------------------- /thirdpart/ufile-phpsdk/v1/ucloud/proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ufile-phpsdk/v1/ucloud/proxy.php -------------------------------------------------------------------------------- /thirdpart/ufile-phpsdk/v1/ucloud/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/thirdpart/ufile-phpsdk/v1/ucloud/utils.php -------------------------------------------------------------------------------- /uploader/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/Common.php -------------------------------------------------------------------------------- /uploader/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/Upload.php -------------------------------------------------------------------------------- /uploader/UploadAliyun.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadAliyun.php -------------------------------------------------------------------------------- /uploader/UploadAzure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadAzure.php -------------------------------------------------------------------------------- /uploader/UploadBaidu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadBaidu.php -------------------------------------------------------------------------------- /uploader/UploadChevereto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadChevereto.php -------------------------------------------------------------------------------- /uploader/UploadCloudinary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadCloudinary.php -------------------------------------------------------------------------------- /uploader/UploadCodingnet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadCodingnet.php -------------------------------------------------------------------------------- /uploader/UploadDropbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadDropbox.php -------------------------------------------------------------------------------- /uploader/UploadGitee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadGitee.php -------------------------------------------------------------------------------- /uploader/UploadGithub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadGithub.php -------------------------------------------------------------------------------- /uploader/UploadGitlab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadGitlab.php -------------------------------------------------------------------------------- /uploader/UploadGoogledrive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadGoogledrive.php -------------------------------------------------------------------------------- /uploader/UploadHuawei.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadHuawei.php -------------------------------------------------------------------------------- /uploader/UploadImgur.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadImgur.php -------------------------------------------------------------------------------- /uploader/UploadJd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadJd.php -------------------------------------------------------------------------------- /uploader/UploadJianguoyun.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadJianguoyun.php -------------------------------------------------------------------------------- /uploader/UploadKs3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadKs3.php -------------------------------------------------------------------------------- /uploader/UploadLocal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadLocal.php -------------------------------------------------------------------------------- /uploader/UploadMinio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadMinio.php -------------------------------------------------------------------------------- /uploader/UploadNetease.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadNetease.php -------------------------------------------------------------------------------- /uploader/UploadNextcloud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadNextcloud.php -------------------------------------------------------------------------------- /uploader/UploadOnedrive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadOnedrive.php -------------------------------------------------------------------------------- /uploader/UploadQingcloud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadQingcloud.php -------------------------------------------------------------------------------- /uploader/UploadQiniu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadQiniu.php -------------------------------------------------------------------------------- /uploader/UploadS3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadS3.php -------------------------------------------------------------------------------- /uploader/UploadSftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadSftp.php -------------------------------------------------------------------------------- /uploader/UploadSmms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadSmms.php -------------------------------------------------------------------------------- /uploader/UploadTencent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadTencent.php -------------------------------------------------------------------------------- /uploader/UploadTusu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadTusu.php -------------------------------------------------------------------------------- /uploader/UploadUcloud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadUcloud.php -------------------------------------------------------------------------------- /uploader/UploadUpyun.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadUpyun.php -------------------------------------------------------------------------------- /uploader/UploadWeibo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/uploader/UploadWeibo.php -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/vendor/aliyuncs/oss-sdk-php/.coveralls.yml -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/vendor/aliyuncs/oss-sdk-php/.gitignore -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/vendor/aliyuncs/oss-sdk-php/.travis.yml -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/vendor/aliyuncs/oss-sdk-php/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/vendor/aliyuncs/oss-sdk-php/LICENSE.md -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/vendor/aliyuncs/oss-sdk-php/README-CN.md -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/vendor/aliyuncs/oss-sdk-php/README.md -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/vendor/aliyuncs/oss-sdk-php/autoload.php -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/build-phar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/vendor/aliyuncs/oss-sdk-php/build-phar.sh -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/vendor/aliyuncs/oss-sdk-php/composer.json -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiebruce/PicUploader/HEAD/vendor/aliyuncs/oss-sdk-php/example.jpg -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/index.php: -------------------------------------------------------------------------------- 1 |