diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..d992ea0a --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +## User settings +xcuserdata/ + +.swiftpm diff --git a/MSGraphClientModelsTests/BaseModels/MSCollectionTests.m b/MSGraphClientModelsTests/BaseModels/MSCollectionTests.m index 1973042b..10bcc154 100644 --- a/MSGraphClientModelsTests/BaseModels/MSCollectionTests.m +++ b/MSGraphClientModelsTests/BaseModels/MSCollectionTests.m @@ -3,7 +3,11 @@ // #import +#if SWIFT_PACKAGE +@import MSGraphClientModels; +#else #import "MSCollection.h" +#endif #define MSGraphBaseURL @"https://graph.microsoft.com/v1.0/" diff --git a/MSGraphClientModelsTests/BaseModels/MSDateTests.m b/MSGraphClientModelsTests/BaseModels/MSDateTests.m index a0d864d0..eb7bf9d8 100644 --- a/MSGraphClientModelsTests/BaseModels/MSDateTests.m +++ b/MSGraphClientModelsTests/BaseModels/MSDateTests.m @@ -4,7 +4,11 @@ #import #import +#if SWIFT_PACKAGE +@import MSGraphClientModels; +#else #import "MSDate.h" +#endif @interface MSDate (Test) diff --git a/MSGraphClientModelsTests/BaseModels/MSDurationTests.m b/MSGraphClientModelsTests/BaseModels/MSDurationTests.m index 02d7da05..bf32b43d 100644 --- a/MSGraphClientModelsTests/BaseModels/MSDurationTests.m +++ b/MSGraphClientModelsTests/BaseModels/MSDurationTests.m @@ -2,7 +2,11 @@ #import +#if SWIFT_PACKAGE +@import MSGraphClientModels; +#else #import "MSDuration.h" +#endif @interface MSDurationTests : XCTestCase diff --git a/MSGraphClientModelsTests/BaseModels/MSObjectTests.m b/MSGraphClientModelsTests/BaseModels/MSObjectTests.m index 912d64a3..994da866 100644 --- a/MSGraphClientModelsTests/BaseModels/MSObjectTests.m +++ b/MSGraphClientModelsTests/BaseModels/MSObjectTests.m @@ -3,9 +3,12 @@ // #import +#if SWIFT_PACKAGE +@import MSGraphClientModels; +#else #import "MSObject.h" #import "NSDate+MSSerialization.h" - +#endif @interface MSObjectTests : XCTestCase diff --git a/MSGraphClientModelsTests/BaseModels/MSTimeOfDayTests.m b/MSGraphClientModelsTests/BaseModels/MSTimeOfDayTests.m index 0f6a917e..c30ae0a3 100644 --- a/MSGraphClientModelsTests/BaseModels/MSTimeOfDayTests.m +++ b/MSGraphClientModelsTests/BaseModels/MSTimeOfDayTests.m @@ -3,7 +3,11 @@ // #import +#if SWIFT_PACKAGE +@import MSGraphClientModels; +#else #import "MSTimeOfDay.h" +#endif @interface MSTimeOfDay() diff --git a/MSGraphClientModelsTests/BaseModels/NSDate+MSSerializationTests.m b/MSGraphClientModelsTests/BaseModels/NSDate+MSSerializationTests.m index 0f65e7e4..1519522d 100644 --- a/MSGraphClientModelsTests/BaseModels/NSDate+MSSerializationTests.m +++ b/MSGraphClientModelsTests/BaseModels/NSDate+MSSerializationTests.m @@ -3,7 +3,11 @@ // #import +#if SWIFT_PACKAGE +@import MSGraphClientModels; +#else #import "NSDate+MSSerialization.h" +#endif static NSString *dateFormatWithMillis = @"yyyy-MM-dd'T'HH:mm:ss.SSSSSSZ"; diff --git a/Package.swift b/Package.swift new file mode 100644 index 00000000..f2e70706 --- /dev/null +++ b/Package.swift @@ -0,0 +1,33 @@ +// swift-tools-version:5.1 +import PackageDescription +let package = Package( + name: "MSGraphClientModels", + platforms: [ + .iOS(.v9), + .macOS(.v10_10) + ], + products: [ + .library(name: "MSGraphClientModels", targets: [ + "MSGraphClientModels" + ]) + ], + targets: [ + .target( + name: "MSGraphClientModels", + path: "", + exclude: ["MSGraphClientModelsTests"], + sources: ["BaseModels", + "GeneratedModels"], + publicHeadersPath: "include", + cSettings: [ + .headerSearchPath("BaseModels"), + .headerSearchPath("GeneratedModels") + ] + ), + .testTarget( + name: "MSGraphClientModelsTests", + dependencies: ["MSGraphClientModels"], + path: "MSGraphClientModelsTests" + ) + ] +) diff --git a/README.md b/README.md index 636bfc51..f9864b95 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,17 @@ You can use [CocoaPods](https://cocoapods.org/) to remain up to date with our la pod 'MSGraphClientModels' ``` +### Using Swift Package Manager + +You can also chose to use [Swift Package Manager](https://swift.org/package-manager) for package management. +Add the following `dependency` to your `Package.swift`: + +```swift +dependencies: [ + .package(url: "https://github.com/microsoftgraph/msgraph-sdk-objc-models.git", .upToNextMajor(from: "1.3.0")) +] +``` + ### Using Carthage diff --git a/automatic_link_headers_for_swift_package.sh b/automatic_link_headers_for_swift_package.sh new file mode 100755 index 00000000..c29c6b8d --- /dev/null +++ b/automatic_link_headers_for_swift_package.sh @@ -0,0 +1,21 @@ +#!/bin/sh +include_folder_path=include + +#Clean the include folder +find ${include_folder_path} -type l -delete + +cd ${include_folder_path} + +#equivalent to: s.public_header_files = "BaseModels/*.h" +find ../BaseModels -name "*.h" | sort | uniq | while read header; do + ln -s ${header} +done + +#equivalent to: s.public_header_files = "GeneratedModels/*.h" +find ../GeneratedModels -name "*.h" | sort | uniq | while read header; do + #prevents the linking of the umbrella header + if [ "${header}" != "../GeneratedModels/MSGraphClientModels.h" ]; then + ln -s ${header} + fi +done + diff --git a/include/MSCollection.h b/include/MSCollection.h new file mode 120000 index 00000000..d5cd2f90 --- /dev/null +++ b/include/MSCollection.h @@ -0,0 +1 @@ +../BaseModels/MSCollection.h \ No newline at end of file diff --git a/include/MSDate.h b/include/MSDate.h new file mode 120000 index 00000000..63cdb1b8 --- /dev/null +++ b/include/MSDate.h @@ -0,0 +1 @@ +../BaseModels/MSDate.h \ No newline at end of file diff --git a/include/MSDuration.h b/include/MSDuration.h new file mode 120000 index 00000000..e4a04173 --- /dev/null +++ b/include/MSDuration.h @@ -0,0 +1 @@ +../BaseModels/MSDuration.h \ No newline at end of file diff --git a/include/MSGraphAadUserConversationMember.h b/include/MSGraphAadUserConversationMember.h new file mode 120000 index 00000000..6098bc09 --- /dev/null +++ b/include/MSGraphAadUserConversationMember.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAadUserConversationMember.h \ No newline at end of file diff --git a/include/MSGraphAadUserNotificationRecipient.h b/include/MSGraphAadUserNotificationRecipient.h new file mode 120000 index 00000000..e9178e77 --- /dev/null +++ b/include/MSGraphAadUserNotificationRecipient.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAadUserNotificationRecipient.h \ No newline at end of file diff --git a/include/MSGraphAccessAction.h b/include/MSGraphAccessAction.h new file mode 120000 index 00000000..027eea7a --- /dev/null +++ b/include/MSGraphAccessAction.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAccessAction.h \ No newline at end of file diff --git a/include/MSGraphAccessReviewReviewerScope.h b/include/MSGraphAccessReviewReviewerScope.h new file mode 120000 index 00000000..81a2d0ce --- /dev/null +++ b/include/MSGraphAccessReviewReviewerScope.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAccessReviewReviewerScope.h \ No newline at end of file diff --git a/include/MSGraphActionState.h b/include/MSGraphActionState.h new file mode 120000 index 00000000..985fbd32 --- /dev/null +++ b/include/MSGraphActionState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphActionState.h \ No newline at end of file diff --git a/include/MSGraphActivityBasedTimeoutPolicy.h b/include/MSGraphActivityBasedTimeoutPolicy.h new file mode 120000 index 00000000..55039bff --- /dev/null +++ b/include/MSGraphActivityBasedTimeoutPolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphActivityBasedTimeoutPolicy.h \ No newline at end of file diff --git a/include/MSGraphActivityDomain.h b/include/MSGraphActivityDomain.h new file mode 120000 index 00000000..10353d3e --- /dev/null +++ b/include/MSGraphActivityDomain.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphActivityDomain.h \ No newline at end of file diff --git a/include/MSGraphActivityHistoryItem.h b/include/MSGraphActivityHistoryItem.h new file mode 120000 index 00000000..7a45127f --- /dev/null +++ b/include/MSGraphActivityHistoryItem.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphActivityHistoryItem.h \ No newline at end of file diff --git a/include/MSGraphAddIn.h b/include/MSGraphAddIn.h new file mode 120000 index 00000000..572715ca --- /dev/null +++ b/include/MSGraphAddIn.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAddIn.h \ No newline at end of file diff --git a/include/MSGraphAdminConsentRequestPolicy.h b/include/MSGraphAdminConsentRequestPolicy.h new file mode 120000 index 00000000..7c412ec6 --- /dev/null +++ b/include/MSGraphAdminConsentRequestPolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAdminConsentRequestPolicy.h \ No newline at end of file diff --git a/include/MSGraphAdministrativeUnit.h b/include/MSGraphAdministrativeUnit.h new file mode 120000 index 00000000..feee1c4f --- /dev/null +++ b/include/MSGraphAdministrativeUnit.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAdministrativeUnit.h \ No newline at end of file diff --git a/include/MSGraphAgreement.h b/include/MSGraphAgreement.h new file mode 120000 index 00000000..b6686f44 --- /dev/null +++ b/include/MSGraphAgreement.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAgreement.h \ No newline at end of file diff --git a/include/MSGraphAgreementAcceptance.h b/include/MSGraphAgreementAcceptance.h new file mode 120000 index 00000000..d98f8b1c --- /dev/null +++ b/include/MSGraphAgreementAcceptance.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAgreementAcceptance.h \ No newline at end of file diff --git a/include/MSGraphAgreementAcceptanceState.h b/include/MSGraphAgreementAcceptanceState.h new file mode 120000 index 00000000..fec85d44 --- /dev/null +++ b/include/MSGraphAgreementAcceptanceState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAgreementAcceptanceState.h \ No newline at end of file diff --git a/include/MSGraphAgreementFile.h b/include/MSGraphAgreementFile.h new file mode 120000 index 00000000..f5b58d44 --- /dev/null +++ b/include/MSGraphAgreementFile.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAgreementFile.h \ No newline at end of file diff --git a/include/MSGraphAgreementFileData.h b/include/MSGraphAgreementFileData.h new file mode 120000 index 00000000..d2f76fac --- /dev/null +++ b/include/MSGraphAgreementFileData.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAgreementFileData.h \ No newline at end of file diff --git a/include/MSGraphAgreementFileLocalization.h b/include/MSGraphAgreementFileLocalization.h new file mode 120000 index 00000000..da0c5fb4 --- /dev/null +++ b/include/MSGraphAgreementFileLocalization.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAgreementFileLocalization.h \ No newline at end of file diff --git a/include/MSGraphAgreementFileProperties.h b/include/MSGraphAgreementFileProperties.h new file mode 120000 index 00000000..92283564 --- /dev/null +++ b/include/MSGraphAgreementFileProperties.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAgreementFileProperties.h \ No newline at end of file diff --git a/include/MSGraphAgreementFileVersion.h b/include/MSGraphAgreementFileVersion.h new file mode 120000 index 00000000..bfe7a2eb --- /dev/null +++ b/include/MSGraphAgreementFileVersion.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAgreementFileVersion.h \ No newline at end of file diff --git a/include/MSGraphAlert.h b/include/MSGraphAlert.h new file mode 120000 index 00000000..d3fdcf30 --- /dev/null +++ b/include/MSGraphAlert.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAlert.h \ No newline at end of file diff --git a/include/MSGraphAlertDetection.h b/include/MSGraphAlertDetection.h new file mode 120000 index 00000000..4a5e4187 --- /dev/null +++ b/include/MSGraphAlertDetection.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAlertDetection.h \ No newline at end of file diff --git a/include/MSGraphAlertFeedback.h b/include/MSGraphAlertFeedback.h new file mode 120000 index 00000000..80d68af6 --- /dev/null +++ b/include/MSGraphAlertFeedback.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAlertFeedback.h \ No newline at end of file diff --git a/include/MSGraphAlertHistoryState.h b/include/MSGraphAlertHistoryState.h new file mode 120000 index 00000000..210546f7 --- /dev/null +++ b/include/MSGraphAlertHistoryState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAlertHistoryState.h \ No newline at end of file diff --git a/include/MSGraphAlertSeverity.h b/include/MSGraphAlertSeverity.h new file mode 120000 index 00000000..363f85a8 --- /dev/null +++ b/include/MSGraphAlertSeverity.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAlertSeverity.h \ No newline at end of file diff --git a/include/MSGraphAlertStatus.h b/include/MSGraphAlertStatus.h new file mode 120000 index 00000000..8cabccce --- /dev/null +++ b/include/MSGraphAlertStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAlertStatus.h \ No newline at end of file diff --git a/include/MSGraphAlertTrigger.h b/include/MSGraphAlertTrigger.h new file mode 120000 index 00000000..4de39e61 --- /dev/null +++ b/include/MSGraphAlertTrigger.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAlertTrigger.h \ No newline at end of file diff --git a/include/MSGraphAllDevicesAssignmentTarget.h b/include/MSGraphAllDevicesAssignmentTarget.h new file mode 120000 index 00000000..9e92502c --- /dev/null +++ b/include/MSGraphAllDevicesAssignmentTarget.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAllDevicesAssignmentTarget.h \ No newline at end of file diff --git a/include/MSGraphAllLicensedUsersAssignmentTarget.h b/include/MSGraphAllLicensedUsersAssignmentTarget.h new file mode 120000 index 00000000..c3a67baf --- /dev/null +++ b/include/MSGraphAllLicensedUsersAssignmentTarget.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAllLicensedUsersAssignmentTarget.h \ No newline at end of file diff --git a/include/MSGraphAllowInvitesFrom.h b/include/MSGraphAllowInvitesFrom.h new file mode 120000 index 00000000..2461008f --- /dev/null +++ b/include/MSGraphAllowInvitesFrom.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAllowInvitesFrom.h \ No newline at end of file diff --git a/include/MSGraphAlternativeSecurityId.h b/include/MSGraphAlternativeSecurityId.h new file mode 120000 index 00000000..d7b2670d --- /dev/null +++ b/include/MSGraphAlternativeSecurityId.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAlternativeSecurityId.h \ No newline at end of file diff --git a/include/MSGraphAndroidCompliancePolicy.h b/include/MSGraphAndroidCompliancePolicy.h new file mode 120000 index 00000000..43982bc4 --- /dev/null +++ b/include/MSGraphAndroidCompliancePolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAndroidCompliancePolicy.h \ No newline at end of file diff --git a/include/MSGraphAndroidCustomConfiguration.h b/include/MSGraphAndroidCustomConfiguration.h new file mode 120000 index 00000000..ca054daa --- /dev/null +++ b/include/MSGraphAndroidCustomConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAndroidCustomConfiguration.h \ No newline at end of file diff --git a/include/MSGraphAndroidGeneralDeviceConfiguration.h b/include/MSGraphAndroidGeneralDeviceConfiguration.h new file mode 120000 index 00000000..8ebc117f --- /dev/null +++ b/include/MSGraphAndroidGeneralDeviceConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAndroidGeneralDeviceConfiguration.h \ No newline at end of file diff --git a/include/MSGraphAndroidLobApp.h b/include/MSGraphAndroidLobApp.h new file mode 120000 index 00000000..540d991b --- /dev/null +++ b/include/MSGraphAndroidLobApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAndroidLobApp.h \ No newline at end of file diff --git a/include/MSGraphAndroidManagedAppProtection.h b/include/MSGraphAndroidManagedAppProtection.h new file mode 120000 index 00000000..8575e822 --- /dev/null +++ b/include/MSGraphAndroidManagedAppProtection.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAndroidManagedAppProtection.h \ No newline at end of file diff --git a/include/MSGraphAndroidManagedAppRegistration.h b/include/MSGraphAndroidManagedAppRegistration.h new file mode 120000 index 00000000..472b506f --- /dev/null +++ b/include/MSGraphAndroidManagedAppRegistration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAndroidManagedAppRegistration.h \ No newline at end of file diff --git a/include/MSGraphAndroidMinimumOperatingSystem.h b/include/MSGraphAndroidMinimumOperatingSystem.h new file mode 120000 index 00000000..70aeb706 --- /dev/null +++ b/include/MSGraphAndroidMinimumOperatingSystem.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAndroidMinimumOperatingSystem.h \ No newline at end of file diff --git a/include/MSGraphAndroidMobileAppIdentifier.h b/include/MSGraphAndroidMobileAppIdentifier.h new file mode 120000 index 00000000..3bdb7548 --- /dev/null +++ b/include/MSGraphAndroidMobileAppIdentifier.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAndroidMobileAppIdentifier.h \ No newline at end of file diff --git a/include/MSGraphAndroidRequiredPasswordType.h b/include/MSGraphAndroidRequiredPasswordType.h new file mode 120000 index 00000000..c0b68458 --- /dev/null +++ b/include/MSGraphAndroidRequiredPasswordType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAndroidRequiredPasswordType.h \ No newline at end of file diff --git a/include/MSGraphAndroidStoreApp.h b/include/MSGraphAndroidStoreApp.h new file mode 120000 index 00000000..6b746dc6 --- /dev/null +++ b/include/MSGraphAndroidStoreApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAndroidStoreApp.h \ No newline at end of file diff --git a/include/MSGraphAndroidWorkProfileCompliancePolicy.h b/include/MSGraphAndroidWorkProfileCompliancePolicy.h new file mode 120000 index 00000000..f13be4d5 --- /dev/null +++ b/include/MSGraphAndroidWorkProfileCompliancePolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAndroidWorkProfileCompliancePolicy.h \ No newline at end of file diff --git a/include/MSGraphAndroidWorkProfileCrossProfileDataSharingType.h b/include/MSGraphAndroidWorkProfileCrossProfileDataSharingType.h new file mode 120000 index 00000000..29614e48 --- /dev/null +++ b/include/MSGraphAndroidWorkProfileCrossProfileDataSharingType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAndroidWorkProfileCrossProfileDataSharingType.h \ No newline at end of file diff --git a/include/MSGraphAndroidWorkProfileCustomConfiguration.h b/include/MSGraphAndroidWorkProfileCustomConfiguration.h new file mode 120000 index 00000000..a8eb7be4 --- /dev/null +++ b/include/MSGraphAndroidWorkProfileCustomConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAndroidWorkProfileCustomConfiguration.h \ No newline at end of file diff --git a/include/MSGraphAndroidWorkProfileDefaultAppPermissionPolicyType.h b/include/MSGraphAndroidWorkProfileDefaultAppPermissionPolicyType.h new file mode 120000 index 00000000..69a11b30 --- /dev/null +++ b/include/MSGraphAndroidWorkProfileDefaultAppPermissionPolicyType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAndroidWorkProfileDefaultAppPermissionPolicyType.h \ No newline at end of file diff --git a/include/MSGraphAndroidWorkProfileGeneralDeviceConfiguration.h b/include/MSGraphAndroidWorkProfileGeneralDeviceConfiguration.h new file mode 120000 index 00000000..930deed5 --- /dev/null +++ b/include/MSGraphAndroidWorkProfileGeneralDeviceConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAndroidWorkProfileGeneralDeviceConfiguration.h \ No newline at end of file diff --git a/include/MSGraphAndroidWorkProfileRequiredPasswordType.h b/include/MSGraphAndroidWorkProfileRequiredPasswordType.h new file mode 120000 index 00000000..01168d62 --- /dev/null +++ b/include/MSGraphAndroidWorkProfileRequiredPasswordType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAndroidWorkProfileRequiredPasswordType.h \ No newline at end of file diff --git a/include/MSGraphApiApplication.h b/include/MSGraphApiApplication.h new file mode 120000 index 00000000..cf628cfa --- /dev/null +++ b/include/MSGraphApiApplication.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphApiApplication.h \ No newline at end of file diff --git a/include/MSGraphAppCatalogs.h b/include/MSGraphAppCatalogs.h new file mode 120000 index 00000000..adf5d711 --- /dev/null +++ b/include/MSGraphAppCatalogs.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAppCatalogs.h \ No newline at end of file diff --git a/include/MSGraphAppConfigurationSettingItem.h b/include/MSGraphAppConfigurationSettingItem.h new file mode 120000 index 00000000..b7f33dfd --- /dev/null +++ b/include/MSGraphAppConfigurationSettingItem.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAppConfigurationSettingItem.h \ No newline at end of file diff --git a/include/MSGraphAppConsentApprovalRoute.h b/include/MSGraphAppConsentApprovalRoute.h new file mode 120000 index 00000000..faed8653 --- /dev/null +++ b/include/MSGraphAppConsentApprovalRoute.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAppConsentApprovalRoute.h \ No newline at end of file diff --git a/include/MSGraphAppConsentRequest.h b/include/MSGraphAppConsentRequest.h new file mode 120000 index 00000000..3a4387e6 --- /dev/null +++ b/include/MSGraphAppConsentRequest.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAppConsentRequest.h \ No newline at end of file diff --git a/include/MSGraphAppConsentRequestScope.h b/include/MSGraphAppConsentRequestScope.h new file mode 120000 index 00000000..6fe1c323 --- /dev/null +++ b/include/MSGraphAppConsentRequestScope.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAppConsentRequestScope.h \ No newline at end of file diff --git a/include/MSGraphAppHostedMediaConfig.h b/include/MSGraphAppHostedMediaConfig.h new file mode 120000 index 00000000..9546ee60 --- /dev/null +++ b/include/MSGraphAppHostedMediaConfig.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAppHostedMediaConfig.h \ No newline at end of file diff --git a/include/MSGraphAppIdentity.h b/include/MSGraphAppIdentity.h new file mode 120000 index 00000000..7f8b07ce --- /dev/null +++ b/include/MSGraphAppIdentity.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAppIdentity.h \ No newline at end of file diff --git a/include/MSGraphAppListItem.h b/include/MSGraphAppListItem.h new file mode 120000 index 00000000..5b412253 --- /dev/null +++ b/include/MSGraphAppListItem.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAppListItem.h \ No newline at end of file diff --git a/include/MSGraphAppListType.h b/include/MSGraphAppListType.h new file mode 120000 index 00000000..b8ad59a2 --- /dev/null +++ b/include/MSGraphAppListType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAppListType.h \ No newline at end of file diff --git a/include/MSGraphAppLockerApplicationControlType.h b/include/MSGraphAppLockerApplicationControlType.h new file mode 120000 index 00000000..2c014269 --- /dev/null +++ b/include/MSGraphAppLockerApplicationControlType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAppLockerApplicationControlType.h \ No newline at end of file diff --git a/include/MSGraphAppRole.h b/include/MSGraphAppRole.h new file mode 120000 index 00000000..69f8c57f --- /dev/null +++ b/include/MSGraphAppRole.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAppRole.h \ No newline at end of file diff --git a/include/MSGraphAppRoleAssignment.h b/include/MSGraphAppRoleAssignment.h new file mode 120000 index 00000000..f65d6295 --- /dev/null +++ b/include/MSGraphAppRoleAssignment.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAppRoleAssignment.h \ No newline at end of file diff --git a/include/MSGraphAppScope.h b/include/MSGraphAppScope.h new file mode 120000 index 00000000..c87366fa --- /dev/null +++ b/include/MSGraphAppScope.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAppScope.h \ No newline at end of file diff --git a/include/MSGraphAppleDeviceFeaturesConfigurationBase.h b/include/MSGraphAppleDeviceFeaturesConfigurationBase.h new file mode 120000 index 00000000..6c38136c --- /dev/null +++ b/include/MSGraphAppleDeviceFeaturesConfigurationBase.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAppleDeviceFeaturesConfigurationBase.h \ No newline at end of file diff --git a/include/MSGraphApplePushNotificationCertificate.h b/include/MSGraphApplePushNotificationCertificate.h new file mode 120000 index 00000000..502e9711 --- /dev/null +++ b/include/MSGraphApplePushNotificationCertificate.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphApplePushNotificationCertificate.h \ No newline at end of file diff --git a/include/MSGraphApplication.h b/include/MSGraphApplication.h new file mode 120000 index 00000000..d762d764 --- /dev/null +++ b/include/MSGraphApplication.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphApplication.h \ No newline at end of file diff --git a/include/MSGraphApplicationEnforcedRestrictionsSessionControl.h b/include/MSGraphApplicationEnforcedRestrictionsSessionControl.h new file mode 120000 index 00000000..ceaa75fe --- /dev/null +++ b/include/MSGraphApplicationEnforcedRestrictionsSessionControl.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphApplicationEnforcedRestrictionsSessionControl.h \ No newline at end of file diff --git a/include/MSGraphApplicationGuardBlockClipboardSharingType.h b/include/MSGraphApplicationGuardBlockClipboardSharingType.h new file mode 120000 index 00000000..27fefb22 --- /dev/null +++ b/include/MSGraphApplicationGuardBlockClipboardSharingType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphApplicationGuardBlockClipboardSharingType.h \ No newline at end of file diff --git a/include/MSGraphApplicationGuardBlockFileTransferType.h b/include/MSGraphApplicationGuardBlockFileTransferType.h new file mode 120000 index 00000000..0ed60ae4 --- /dev/null +++ b/include/MSGraphApplicationGuardBlockFileTransferType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphApplicationGuardBlockFileTransferType.h \ No newline at end of file diff --git a/include/MSGraphApplicationServicePrincipal.h b/include/MSGraphApplicationServicePrincipal.h new file mode 120000 index 00000000..c71ee6f5 --- /dev/null +++ b/include/MSGraphApplicationServicePrincipal.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphApplicationServicePrincipal.h \ No newline at end of file diff --git a/include/MSGraphApplicationTemplate.h b/include/MSGraphApplicationTemplate.h new file mode 120000 index 00000000..08e6f69a --- /dev/null +++ b/include/MSGraphApplicationTemplate.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphApplicationTemplate.h \ No newline at end of file diff --git a/include/MSGraphApplicationType.h b/include/MSGraphApplicationType.h new file mode 120000 index 00000000..951fd0d5 --- /dev/null +++ b/include/MSGraphApplicationType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphApplicationType.h \ No newline at end of file diff --git a/include/MSGraphAppliedConditionalAccessPolicy.h b/include/MSGraphAppliedConditionalAccessPolicy.h new file mode 120000 index 00000000..dd02e770 --- /dev/null +++ b/include/MSGraphAppliedConditionalAccessPolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAppliedConditionalAccessPolicy.h \ No newline at end of file diff --git a/include/MSGraphAppliedConditionalAccessPolicyResult.h b/include/MSGraphAppliedConditionalAccessPolicyResult.h new file mode 120000 index 00000000..f7ce5fe0 --- /dev/null +++ b/include/MSGraphAppliedConditionalAccessPolicyResult.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAppliedConditionalAccessPolicyResult.h \ No newline at end of file diff --git a/include/MSGraphApproval.h b/include/MSGraphApproval.h new file mode 120000 index 00000000..4e6543b6 --- /dev/null +++ b/include/MSGraphApproval.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphApproval.h \ No newline at end of file diff --git a/include/MSGraphApprovalStage.h b/include/MSGraphApprovalStage.h new file mode 120000 index 00000000..ff3caeb0 --- /dev/null +++ b/include/MSGraphApprovalStage.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphApprovalStage.h \ No newline at end of file diff --git a/include/MSGraphArchivedPrintJob.h b/include/MSGraphArchivedPrintJob.h new file mode 120000 index 00000000..21157161 --- /dev/null +++ b/include/MSGraphArchivedPrintJob.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphArchivedPrintJob.h \ No newline at end of file diff --git a/include/MSGraphAssignedLabel.h b/include/MSGraphAssignedLabel.h new file mode 120000 index 00000000..6c327f89 --- /dev/null +++ b/include/MSGraphAssignedLabel.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAssignedLabel.h \ No newline at end of file diff --git a/include/MSGraphAssignedLicense.h b/include/MSGraphAssignedLicense.h new file mode 120000 index 00000000..8700dcdb --- /dev/null +++ b/include/MSGraphAssignedLicense.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAssignedLicense.h \ No newline at end of file diff --git a/include/MSGraphAssignedPlan.h b/include/MSGraphAssignedPlan.h new file mode 120000 index 00000000..24569950 --- /dev/null +++ b/include/MSGraphAssignedPlan.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAssignedPlan.h \ No newline at end of file diff --git a/include/MSGraphAttachment.h b/include/MSGraphAttachment.h new file mode 120000 index 00000000..a80c5c94 --- /dev/null +++ b/include/MSGraphAttachment.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAttachment.h \ No newline at end of file diff --git a/include/MSGraphAttachmentItem.h b/include/MSGraphAttachmentItem.h new file mode 120000 index 00000000..a2e78f7f --- /dev/null +++ b/include/MSGraphAttachmentItem.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAttachmentItem.h \ No newline at end of file diff --git a/include/MSGraphAttachmentType.h b/include/MSGraphAttachmentType.h new file mode 120000 index 00000000..feaac7ff --- /dev/null +++ b/include/MSGraphAttachmentType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAttachmentType.h \ No newline at end of file diff --git a/include/MSGraphAttendee.h b/include/MSGraphAttendee.h new file mode 120000 index 00000000..2e829483 --- /dev/null +++ b/include/MSGraphAttendee.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAttendee.h \ No newline at end of file diff --git a/include/MSGraphAttendeeAvailability.h b/include/MSGraphAttendeeAvailability.h new file mode 120000 index 00000000..c9997d67 --- /dev/null +++ b/include/MSGraphAttendeeAvailability.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAttendeeAvailability.h \ No newline at end of file diff --git a/include/MSGraphAttendeeBase.h b/include/MSGraphAttendeeBase.h new file mode 120000 index 00000000..ec8a5e08 --- /dev/null +++ b/include/MSGraphAttendeeBase.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAttendeeBase.h \ No newline at end of file diff --git a/include/MSGraphAttendeeType.h b/include/MSGraphAttendeeType.h new file mode 120000 index 00000000..c18ae573 --- /dev/null +++ b/include/MSGraphAttendeeType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAttendeeType.h \ No newline at end of file diff --git a/include/MSGraphAttestationLevel.h b/include/MSGraphAttestationLevel.h new file mode 120000 index 00000000..ba053b48 --- /dev/null +++ b/include/MSGraphAttestationLevel.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAttestationLevel.h \ No newline at end of file diff --git a/include/MSGraphAudio.h b/include/MSGraphAudio.h new file mode 120000 index 00000000..1e0a8c09 --- /dev/null +++ b/include/MSGraphAudio.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAudio.h \ No newline at end of file diff --git a/include/MSGraphAudioConferencing.h b/include/MSGraphAudioConferencing.h new file mode 120000 index 00000000..bee09293 --- /dev/null +++ b/include/MSGraphAudioConferencing.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAudioConferencing.h \ No newline at end of file diff --git a/include/MSGraphAuditActivityInitiator.h b/include/MSGraphAuditActivityInitiator.h new file mode 120000 index 00000000..ded31b92 --- /dev/null +++ b/include/MSGraphAuditActivityInitiator.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAuditActivityInitiator.h \ No newline at end of file diff --git a/include/MSGraphAuditLogRoot.h b/include/MSGraphAuditLogRoot.h new file mode 120000 index 00000000..0021cd5e --- /dev/null +++ b/include/MSGraphAuditLogRoot.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAuditLogRoot.h \ No newline at end of file diff --git a/include/MSGraphAuthentication.h b/include/MSGraphAuthentication.h new file mode 120000 index 00000000..8b51bc50 --- /dev/null +++ b/include/MSGraphAuthentication.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAuthentication.h \ No newline at end of file diff --git a/include/MSGraphAuthenticationMethod.h b/include/MSGraphAuthenticationMethod.h new file mode 120000 index 00000000..1340808b --- /dev/null +++ b/include/MSGraphAuthenticationMethod.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAuthenticationMethod.h \ No newline at end of file diff --git a/include/MSGraphAuthenticationMethodConfiguration.h b/include/MSGraphAuthenticationMethodConfiguration.h new file mode 120000 index 00000000..90e5d8e8 --- /dev/null +++ b/include/MSGraphAuthenticationMethodConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAuthenticationMethodConfiguration.h \ No newline at end of file diff --git a/include/MSGraphAuthenticationMethodKeyStrength.h b/include/MSGraphAuthenticationMethodKeyStrength.h new file mode 120000 index 00000000..5448b392 --- /dev/null +++ b/include/MSGraphAuthenticationMethodKeyStrength.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAuthenticationMethodKeyStrength.h \ No newline at end of file diff --git a/include/MSGraphAuthenticationMethodState.h b/include/MSGraphAuthenticationMethodState.h new file mode 120000 index 00000000..950485df --- /dev/null +++ b/include/MSGraphAuthenticationMethodState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAuthenticationMethodState.h \ No newline at end of file diff --git a/include/MSGraphAuthenticationMethodTarget.h b/include/MSGraphAuthenticationMethodTarget.h new file mode 120000 index 00000000..68fb5c91 --- /dev/null +++ b/include/MSGraphAuthenticationMethodTarget.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAuthenticationMethodTarget.h \ No newline at end of file diff --git a/include/MSGraphAuthenticationMethodTargetType.h b/include/MSGraphAuthenticationMethodTargetType.h new file mode 120000 index 00000000..1f348ec8 --- /dev/null +++ b/include/MSGraphAuthenticationMethodTargetType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAuthenticationMethodTargetType.h \ No newline at end of file diff --git a/include/MSGraphAuthenticationMethodsPolicy.h b/include/MSGraphAuthenticationMethodsPolicy.h new file mode 120000 index 00000000..cb209bc4 --- /dev/null +++ b/include/MSGraphAuthenticationMethodsPolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAuthenticationMethodsPolicy.h \ No newline at end of file diff --git a/include/MSGraphAuthenticatorAppFeatureSettings.h b/include/MSGraphAuthenticatorAppFeatureSettings.h new file mode 120000 index 00000000..6cc64cfa --- /dev/null +++ b/include/MSGraphAuthenticatorAppFeatureSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAuthenticatorAppFeatureSettings.h \ No newline at end of file diff --git a/include/MSGraphAuthorizationPolicy.h b/include/MSGraphAuthorizationPolicy.h new file mode 120000 index 00000000..f8713828 --- /dev/null +++ b/include/MSGraphAuthorizationPolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAuthorizationPolicy.h \ No newline at end of file diff --git a/include/MSGraphAutomaticRepliesMailTips.h b/include/MSGraphAutomaticRepliesMailTips.h new file mode 120000 index 00000000..be0429f2 --- /dev/null +++ b/include/MSGraphAutomaticRepliesMailTips.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAutomaticRepliesMailTips.h \ No newline at end of file diff --git a/include/MSGraphAutomaticRepliesSetting.h b/include/MSGraphAutomaticRepliesSetting.h new file mode 120000 index 00000000..f1691271 --- /dev/null +++ b/include/MSGraphAutomaticRepliesSetting.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAutomaticRepliesSetting.h \ No newline at end of file diff --git a/include/MSGraphAutomaticRepliesStatus.h b/include/MSGraphAutomaticRepliesStatus.h new file mode 120000 index 00000000..f74981f6 --- /dev/null +++ b/include/MSGraphAutomaticRepliesStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAutomaticRepliesStatus.h \ No newline at end of file diff --git a/include/MSGraphAutomaticUpdateMode.h b/include/MSGraphAutomaticUpdateMode.h new file mode 120000 index 00000000..0af59f01 --- /dev/null +++ b/include/MSGraphAutomaticUpdateMode.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAutomaticUpdateMode.h \ No newline at end of file diff --git a/include/MSGraphAverageComparativeScore.h b/include/MSGraphAverageComparativeScore.h new file mode 120000 index 00000000..8d7fcfe1 --- /dev/null +++ b/include/MSGraphAverageComparativeScore.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphAverageComparativeScore.h \ No newline at end of file diff --git a/include/MSGraphBaseItem.h b/include/MSGraphBaseItem.h new file mode 120000 index 00000000..53325716 --- /dev/null +++ b/include/MSGraphBaseItem.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphBaseItem.h \ No newline at end of file diff --git a/include/MSGraphBaseItemVersion.h b/include/MSGraphBaseItemVersion.h new file mode 120000 index 00000000..7053cc24 --- /dev/null +++ b/include/MSGraphBaseItemVersion.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphBaseItemVersion.h \ No newline at end of file diff --git a/include/MSGraphBitLockerEncryptionMethod.h b/include/MSGraphBitLockerEncryptionMethod.h new file mode 120000 index 00000000..0771bfe6 --- /dev/null +++ b/include/MSGraphBitLockerEncryptionMethod.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphBitLockerEncryptionMethod.h \ No newline at end of file diff --git a/include/MSGraphBitLockerRemovableDrivePolicy.h b/include/MSGraphBitLockerRemovableDrivePolicy.h new file mode 120000 index 00000000..1c0b4ebd --- /dev/null +++ b/include/MSGraphBitLockerRemovableDrivePolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphBitLockerRemovableDrivePolicy.h \ No newline at end of file diff --git a/include/MSGraphBodyType.h b/include/MSGraphBodyType.h new file mode 120000 index 00000000..fe5963ce --- /dev/null +++ b/include/MSGraphBodyType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphBodyType.h \ No newline at end of file diff --git a/include/MSGraphBookingType.h b/include/MSGraphBookingType.h new file mode 120000 index 00000000..cc2bf108 --- /dev/null +++ b/include/MSGraphBookingType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphBookingType.h \ No newline at end of file diff --git a/include/MSGraphBooleanColumn.h b/include/MSGraphBooleanColumn.h new file mode 120000 index 00000000..9b5b596f --- /dev/null +++ b/include/MSGraphBooleanColumn.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphBooleanColumn.h \ No newline at end of file diff --git a/include/MSGraphCalculatedColumn.h b/include/MSGraphCalculatedColumn.h new file mode 120000 index 00000000..577ddd49 --- /dev/null +++ b/include/MSGraphCalculatedColumn.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCalculatedColumn.h \ No newline at end of file diff --git a/include/MSGraphCalendar.h b/include/MSGraphCalendar.h new file mode 120000 index 00000000..20a6a285 --- /dev/null +++ b/include/MSGraphCalendar.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCalendar.h \ No newline at end of file diff --git a/include/MSGraphCalendarColor.h b/include/MSGraphCalendarColor.h new file mode 120000 index 00000000..3d991b80 --- /dev/null +++ b/include/MSGraphCalendarColor.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCalendarColor.h \ No newline at end of file diff --git a/include/MSGraphCalendarGroup.h b/include/MSGraphCalendarGroup.h new file mode 120000 index 00000000..8ec25d08 --- /dev/null +++ b/include/MSGraphCalendarGroup.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCalendarGroup.h \ No newline at end of file diff --git a/include/MSGraphCalendarPermission.h b/include/MSGraphCalendarPermission.h new file mode 120000 index 00000000..f5929bec --- /dev/null +++ b/include/MSGraphCalendarPermission.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCalendarPermission.h \ No newline at end of file diff --git a/include/MSGraphCalendarRoleType.h b/include/MSGraphCalendarRoleType.h new file mode 120000 index 00000000..a0178f9d --- /dev/null +++ b/include/MSGraphCalendarRoleType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCalendarRoleType.h \ No newline at end of file diff --git a/include/MSGraphCalendarSharingAction.h b/include/MSGraphCalendarSharingAction.h new file mode 120000 index 00000000..32e4a14b --- /dev/null +++ b/include/MSGraphCalendarSharingAction.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCalendarSharingAction.h \ No newline at end of file diff --git a/include/MSGraphCalendarSharingActionImportance.h b/include/MSGraphCalendarSharingActionImportance.h new file mode 120000 index 00000000..f3a54799 --- /dev/null +++ b/include/MSGraphCalendarSharingActionImportance.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCalendarSharingActionImportance.h \ No newline at end of file diff --git a/include/MSGraphCalendarSharingActionType.h b/include/MSGraphCalendarSharingActionType.h new file mode 120000 index 00000000..ccc6dff3 --- /dev/null +++ b/include/MSGraphCalendarSharingActionType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCalendarSharingActionType.h \ No newline at end of file diff --git a/include/MSGraphCalendarSharingMessage.h b/include/MSGraphCalendarSharingMessage.h new file mode 120000 index 00000000..411491b6 --- /dev/null +++ b/include/MSGraphCalendarSharingMessage.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCalendarSharingMessage.h \ No newline at end of file diff --git a/include/MSGraphCalendarSharingMessageAction.h b/include/MSGraphCalendarSharingMessageAction.h new file mode 120000 index 00000000..f9f8cf00 --- /dev/null +++ b/include/MSGraphCalendarSharingMessageAction.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCalendarSharingMessageAction.h \ No newline at end of file diff --git a/include/MSGraphCall.h b/include/MSGraphCall.h new file mode 120000 index 00000000..20f0ac6b --- /dev/null +++ b/include/MSGraphCall.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCall.h \ No newline at end of file diff --git a/include/MSGraphCallDirection.h b/include/MSGraphCallDirection.h new file mode 120000 index 00000000..c6e56999 --- /dev/null +++ b/include/MSGraphCallDirection.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallDirection.h \ No newline at end of file diff --git a/include/MSGraphCallMediaState.h b/include/MSGraphCallMediaState.h new file mode 120000 index 00000000..9fbd27f9 --- /dev/null +++ b/include/MSGraphCallMediaState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallMediaState.h \ No newline at end of file diff --git a/include/MSGraphCallOptions.h b/include/MSGraphCallOptions.h new file mode 120000 index 00000000..1c74ae50 --- /dev/null +++ b/include/MSGraphCallOptions.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallOptions.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsCallRecord.h b/include/MSGraphCallRecordsCallRecord.h new file mode 120000 index 00000000..a33d6602 --- /dev/null +++ b/include/MSGraphCallRecordsCallRecord.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsCallRecord.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsCallType.h b/include/MSGraphCallRecordsCallType.h new file mode 120000 index 00000000..3c3d294b --- /dev/null +++ b/include/MSGraphCallRecordsCallType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsCallType.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsClientPlatform.h b/include/MSGraphCallRecordsClientPlatform.h new file mode 120000 index 00000000..ddcad2c9 --- /dev/null +++ b/include/MSGraphCallRecordsClientPlatform.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsClientPlatform.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsClientUserAgent.h b/include/MSGraphCallRecordsClientUserAgent.h new file mode 120000 index 00000000..d28fe2a4 --- /dev/null +++ b/include/MSGraphCallRecordsClientUserAgent.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsClientUserAgent.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsDeviceInfo.h b/include/MSGraphCallRecordsDeviceInfo.h new file mode 120000 index 00000000..4916148d --- /dev/null +++ b/include/MSGraphCallRecordsDeviceInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsDeviceInfo.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsEndpoint.h b/include/MSGraphCallRecordsEndpoint.h new file mode 120000 index 00000000..28c1f206 --- /dev/null +++ b/include/MSGraphCallRecordsEndpoint.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsEndpoint.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsFailureInfo.h b/include/MSGraphCallRecordsFailureInfo.h new file mode 120000 index 00000000..6d05cb0f --- /dev/null +++ b/include/MSGraphCallRecordsFailureInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsFailureInfo.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsFailureStage.h b/include/MSGraphCallRecordsFailureStage.h new file mode 120000 index 00000000..73e25980 --- /dev/null +++ b/include/MSGraphCallRecordsFailureStage.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsFailureStage.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsFeedbackTokenSet.h b/include/MSGraphCallRecordsFeedbackTokenSet.h new file mode 120000 index 00000000..d5021ba5 --- /dev/null +++ b/include/MSGraphCallRecordsFeedbackTokenSet.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsFeedbackTokenSet.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsMedia.h b/include/MSGraphCallRecordsMedia.h new file mode 120000 index 00000000..45548e88 --- /dev/null +++ b/include/MSGraphCallRecordsMedia.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsMedia.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsMediaStream.h b/include/MSGraphCallRecordsMediaStream.h new file mode 120000 index 00000000..f83e657c --- /dev/null +++ b/include/MSGraphCallRecordsMediaStream.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsMediaStream.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsMediaStreamDirection.h b/include/MSGraphCallRecordsMediaStreamDirection.h new file mode 120000 index 00000000..c0eae258 --- /dev/null +++ b/include/MSGraphCallRecordsMediaStreamDirection.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsMediaStreamDirection.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsModality.h b/include/MSGraphCallRecordsModality.h new file mode 120000 index 00000000..33ba5924 --- /dev/null +++ b/include/MSGraphCallRecordsModality.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsModality.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsNetworkConnectionType.h b/include/MSGraphCallRecordsNetworkConnectionType.h new file mode 120000 index 00000000..33ddeffd --- /dev/null +++ b/include/MSGraphCallRecordsNetworkConnectionType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsNetworkConnectionType.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsNetworkInfo.h b/include/MSGraphCallRecordsNetworkInfo.h new file mode 120000 index 00000000..064042f9 --- /dev/null +++ b/include/MSGraphCallRecordsNetworkInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsNetworkInfo.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsParticipantEndpoint.h b/include/MSGraphCallRecordsParticipantEndpoint.h new file mode 120000 index 00000000..2baf2c16 --- /dev/null +++ b/include/MSGraphCallRecordsParticipantEndpoint.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsParticipantEndpoint.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsProductFamily.h b/include/MSGraphCallRecordsProductFamily.h new file mode 120000 index 00000000..54f318f1 --- /dev/null +++ b/include/MSGraphCallRecordsProductFamily.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsProductFamily.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsSegment.h b/include/MSGraphCallRecordsSegment.h new file mode 120000 index 00000000..9b1b4226 --- /dev/null +++ b/include/MSGraphCallRecordsSegment.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsSegment.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsServiceEndpoint.h b/include/MSGraphCallRecordsServiceEndpoint.h new file mode 120000 index 00000000..4c6588f2 --- /dev/null +++ b/include/MSGraphCallRecordsServiceEndpoint.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsServiceEndpoint.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsServiceRole.h b/include/MSGraphCallRecordsServiceRole.h new file mode 120000 index 00000000..ad39d408 --- /dev/null +++ b/include/MSGraphCallRecordsServiceRole.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsServiceRole.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsServiceUserAgent.h b/include/MSGraphCallRecordsServiceUserAgent.h new file mode 120000 index 00000000..ccc83526 --- /dev/null +++ b/include/MSGraphCallRecordsServiceUserAgent.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsServiceUserAgent.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsSession.h b/include/MSGraphCallRecordsSession.h new file mode 120000 index 00000000..24dbaf87 --- /dev/null +++ b/include/MSGraphCallRecordsSession.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsSession.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsUserAgent.h b/include/MSGraphCallRecordsUserAgent.h new file mode 120000 index 00000000..4fbaed8a --- /dev/null +++ b/include/MSGraphCallRecordsUserAgent.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsUserAgent.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsUserFeedback.h b/include/MSGraphCallRecordsUserFeedback.h new file mode 120000 index 00000000..7c6946fe --- /dev/null +++ b/include/MSGraphCallRecordsUserFeedback.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsUserFeedback.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsUserFeedbackRating.h b/include/MSGraphCallRecordsUserFeedbackRating.h new file mode 120000 index 00000000..cb4a8599 --- /dev/null +++ b/include/MSGraphCallRecordsUserFeedbackRating.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsUserFeedbackRating.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsWifiBand.h b/include/MSGraphCallRecordsWifiBand.h new file mode 120000 index 00000000..a5cb97f2 --- /dev/null +++ b/include/MSGraphCallRecordsWifiBand.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsWifiBand.h \ No newline at end of file diff --git a/include/MSGraphCallRecordsWifiRadioType.h b/include/MSGraphCallRecordsWifiRadioType.h new file mode 120000 index 00000000..c21de169 --- /dev/null +++ b/include/MSGraphCallRecordsWifiRadioType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRecordsWifiRadioType.h \ No newline at end of file diff --git a/include/MSGraphCallRoute.h b/include/MSGraphCallRoute.h new file mode 120000 index 00000000..da614598 --- /dev/null +++ b/include/MSGraphCallRoute.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallRoute.h \ No newline at end of file diff --git a/include/MSGraphCallState.h b/include/MSGraphCallState.h new file mode 120000 index 00000000..fa19c8ed --- /dev/null +++ b/include/MSGraphCallState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallState.h \ No newline at end of file diff --git a/include/MSGraphCallTranscriptionInfo.h b/include/MSGraphCallTranscriptionInfo.h new file mode 120000 index 00000000..0c6ba265 --- /dev/null +++ b/include/MSGraphCallTranscriptionInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallTranscriptionInfo.h \ No newline at end of file diff --git a/include/MSGraphCallTranscriptionState.h b/include/MSGraphCallTranscriptionState.h new file mode 120000 index 00000000..1fa0683f --- /dev/null +++ b/include/MSGraphCallTranscriptionState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCallTranscriptionState.h \ No newline at end of file diff --git a/include/MSGraphCancelMediaProcessingOperation.h b/include/MSGraphCancelMediaProcessingOperation.h new file mode 120000 index 00000000..5eea3c23 --- /dev/null +++ b/include/MSGraphCancelMediaProcessingOperation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCancelMediaProcessingOperation.h \ No newline at end of file diff --git a/include/MSGraphCategoryColor.h b/include/MSGraphCategoryColor.h new file mode 120000 index 00000000..e3a308e9 --- /dev/null +++ b/include/MSGraphCategoryColor.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCategoryColor.h \ No newline at end of file diff --git a/include/MSGraphCertificateAuthority.h b/include/MSGraphCertificateAuthority.h new file mode 120000 index 00000000..da7e35ea --- /dev/null +++ b/include/MSGraphCertificateAuthority.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCertificateAuthority.h \ No newline at end of file diff --git a/include/MSGraphCertificateBasedAuthConfiguration.h b/include/MSGraphCertificateBasedAuthConfiguration.h new file mode 120000 index 00000000..8878b467 --- /dev/null +++ b/include/MSGraphCertificateBasedAuthConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCertificateBasedAuthConfiguration.h \ No newline at end of file diff --git a/include/MSGraphCertificationControl.h b/include/MSGraphCertificationControl.h new file mode 120000 index 00000000..5f9d886a --- /dev/null +++ b/include/MSGraphCertificationControl.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCertificationControl.h \ No newline at end of file diff --git a/include/MSGraphChangeNotification.h b/include/MSGraphChangeNotification.h new file mode 120000 index 00000000..9978203f --- /dev/null +++ b/include/MSGraphChangeNotification.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChangeNotification.h \ No newline at end of file diff --git a/include/MSGraphChangeNotificationCollection.h b/include/MSGraphChangeNotificationCollection.h new file mode 120000 index 00000000..971ea93f --- /dev/null +++ b/include/MSGraphChangeNotificationCollection.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChangeNotificationCollection.h \ No newline at end of file diff --git a/include/MSGraphChangeNotificationEncryptedContent.h b/include/MSGraphChangeNotificationEncryptedContent.h new file mode 120000 index 00000000..55699cff --- /dev/null +++ b/include/MSGraphChangeNotificationEncryptedContent.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChangeNotificationEncryptedContent.h \ No newline at end of file diff --git a/include/MSGraphChangeTrackedEntity.h b/include/MSGraphChangeTrackedEntity.h new file mode 120000 index 00000000..d8fac01a --- /dev/null +++ b/include/MSGraphChangeTrackedEntity.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChangeTrackedEntity.h \ No newline at end of file diff --git a/include/MSGraphChangeType.h b/include/MSGraphChangeType.h new file mode 120000 index 00000000..ae0aeda7 --- /dev/null +++ b/include/MSGraphChangeType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChangeType.h \ No newline at end of file diff --git a/include/MSGraphChannel.h b/include/MSGraphChannel.h new file mode 120000 index 00000000..db9c4fc4 --- /dev/null +++ b/include/MSGraphChannel.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChannel.h \ No newline at end of file diff --git a/include/MSGraphChannelIdentity.h b/include/MSGraphChannelIdentity.h new file mode 120000 index 00000000..ff0710da --- /dev/null +++ b/include/MSGraphChannelIdentity.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChannelIdentity.h \ No newline at end of file diff --git a/include/MSGraphChannelMembershipType.h b/include/MSGraphChannelMembershipType.h new file mode 120000 index 00000000..66174ea4 --- /dev/null +++ b/include/MSGraphChannelMembershipType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChannelMembershipType.h \ No newline at end of file diff --git a/include/MSGraphChat.h b/include/MSGraphChat.h new file mode 120000 index 00000000..afa8abae --- /dev/null +++ b/include/MSGraphChat.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChat.h \ No newline at end of file diff --git a/include/MSGraphChatInfo.h b/include/MSGraphChatInfo.h new file mode 120000 index 00000000..6ecae2eb --- /dev/null +++ b/include/MSGraphChatInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChatInfo.h \ No newline at end of file diff --git a/include/MSGraphChatMessage.h b/include/MSGraphChatMessage.h new file mode 120000 index 00000000..86799d24 --- /dev/null +++ b/include/MSGraphChatMessage.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChatMessage.h \ No newline at end of file diff --git a/include/MSGraphChatMessageAttachment.h b/include/MSGraphChatMessageAttachment.h new file mode 120000 index 00000000..15aa6fd1 --- /dev/null +++ b/include/MSGraphChatMessageAttachment.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChatMessageAttachment.h \ No newline at end of file diff --git a/include/MSGraphChatMessageHostedContent.h b/include/MSGraphChatMessageHostedContent.h new file mode 120000 index 00000000..7167ab79 --- /dev/null +++ b/include/MSGraphChatMessageHostedContent.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChatMessageHostedContent.h \ No newline at end of file diff --git a/include/MSGraphChatMessageImportance.h b/include/MSGraphChatMessageImportance.h new file mode 120000 index 00000000..d01775bc --- /dev/null +++ b/include/MSGraphChatMessageImportance.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChatMessageImportance.h \ No newline at end of file diff --git a/include/MSGraphChatMessageMention.h b/include/MSGraphChatMessageMention.h new file mode 120000 index 00000000..f9adf480 --- /dev/null +++ b/include/MSGraphChatMessageMention.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChatMessageMention.h \ No newline at end of file diff --git a/include/MSGraphChatMessagePolicyViolation.h b/include/MSGraphChatMessagePolicyViolation.h new file mode 120000 index 00000000..d9b8fafc --- /dev/null +++ b/include/MSGraphChatMessagePolicyViolation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChatMessagePolicyViolation.h \ No newline at end of file diff --git a/include/MSGraphChatMessagePolicyViolationDlpActionTypes.h b/include/MSGraphChatMessagePolicyViolationDlpActionTypes.h new file mode 120000 index 00000000..8f6f1827 --- /dev/null +++ b/include/MSGraphChatMessagePolicyViolationDlpActionTypes.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChatMessagePolicyViolationDlpActionTypes.h \ No newline at end of file diff --git a/include/MSGraphChatMessagePolicyViolationPolicyTip.h b/include/MSGraphChatMessagePolicyViolationPolicyTip.h new file mode 120000 index 00000000..26569c4f --- /dev/null +++ b/include/MSGraphChatMessagePolicyViolationPolicyTip.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChatMessagePolicyViolationPolicyTip.h \ No newline at end of file diff --git a/include/MSGraphChatMessagePolicyViolationUserActionTypes.h b/include/MSGraphChatMessagePolicyViolationUserActionTypes.h new file mode 120000 index 00000000..2df7b7a6 --- /dev/null +++ b/include/MSGraphChatMessagePolicyViolationUserActionTypes.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChatMessagePolicyViolationUserActionTypes.h \ No newline at end of file diff --git a/include/MSGraphChatMessagePolicyViolationVerdictDetailsTypes.h b/include/MSGraphChatMessagePolicyViolationVerdictDetailsTypes.h new file mode 120000 index 00000000..cdf680fb --- /dev/null +++ b/include/MSGraphChatMessagePolicyViolationVerdictDetailsTypes.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChatMessagePolicyViolationVerdictDetailsTypes.h \ No newline at end of file diff --git a/include/MSGraphChatMessageReaction.h b/include/MSGraphChatMessageReaction.h new file mode 120000 index 00000000..f3d6c7af --- /dev/null +++ b/include/MSGraphChatMessageReaction.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChatMessageReaction.h \ No newline at end of file diff --git a/include/MSGraphChatMessageType.h b/include/MSGraphChatMessageType.h new file mode 120000 index 00000000..3cf78aa8 --- /dev/null +++ b/include/MSGraphChatMessageType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChatMessageType.h \ No newline at end of file diff --git a/include/MSGraphChatType.h b/include/MSGraphChatType.h new file mode 120000 index 00000000..e6dae20b --- /dev/null +++ b/include/MSGraphChatType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChatType.h \ No newline at end of file diff --git a/include/MSGraphChoiceColumn.h b/include/MSGraphChoiceColumn.h new file mode 120000 index 00000000..503b3f01 --- /dev/null +++ b/include/MSGraphChoiceColumn.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphChoiceColumn.h \ No newline at end of file diff --git a/include/MSGraphClaimsMappingPolicy.h b/include/MSGraphClaimsMappingPolicy.h new file mode 120000 index 00000000..cc6dba14 --- /dev/null +++ b/include/MSGraphClaimsMappingPolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphClaimsMappingPolicy.h \ No newline at end of file diff --git a/include/MSGraphClonableTeamParts.h b/include/MSGraphClonableTeamParts.h new file mode 120000 index 00000000..0185ca6e --- /dev/null +++ b/include/MSGraphClonableTeamParts.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphClonableTeamParts.h \ No newline at end of file diff --git a/include/MSGraphCloudAppSecuritySessionControl.h b/include/MSGraphCloudAppSecuritySessionControl.h new file mode 120000 index 00000000..5cef2e84 --- /dev/null +++ b/include/MSGraphCloudAppSecuritySessionControl.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCloudAppSecuritySessionControl.h \ No newline at end of file diff --git a/include/MSGraphCloudAppSecuritySessionControlType.h b/include/MSGraphCloudAppSecuritySessionControlType.h new file mode 120000 index 00000000..7d434308 --- /dev/null +++ b/include/MSGraphCloudAppSecuritySessionControlType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCloudAppSecuritySessionControlType.h \ No newline at end of file diff --git a/include/MSGraphCloudAppSecurityState.h b/include/MSGraphCloudAppSecurityState.h new file mode 120000 index 00000000..596b33ac --- /dev/null +++ b/include/MSGraphCloudAppSecurityState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCloudAppSecurityState.h \ No newline at end of file diff --git a/include/MSGraphCloudCommunications.h b/include/MSGraphCloudCommunications.h new file mode 120000 index 00000000..ead77810 --- /dev/null +++ b/include/MSGraphCloudCommunications.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCloudCommunications.h \ No newline at end of file diff --git a/include/MSGraphColumnDefinition.h b/include/MSGraphColumnDefinition.h new file mode 120000 index 00000000..39e6fbd1 --- /dev/null +++ b/include/MSGraphColumnDefinition.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphColumnDefinition.h \ No newline at end of file diff --git a/include/MSGraphColumnLink.h b/include/MSGraphColumnLink.h new file mode 120000 index 00000000..1d6ff0e3 --- /dev/null +++ b/include/MSGraphColumnLink.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphColumnLink.h \ No newline at end of file diff --git a/include/MSGraphCommsNotification.h b/include/MSGraphCommsNotification.h new file mode 120000 index 00000000..b04a591d --- /dev/null +++ b/include/MSGraphCommsNotification.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCommsNotification.h \ No newline at end of file diff --git a/include/MSGraphCommsNotifications.h b/include/MSGraphCommsNotifications.h new file mode 120000 index 00000000..8c64b800 --- /dev/null +++ b/include/MSGraphCommsNotifications.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCommsNotifications.h \ No newline at end of file diff --git a/include/MSGraphCommsOperation.h b/include/MSGraphCommsOperation.h new file mode 120000 index 00000000..c5b9e09d --- /dev/null +++ b/include/MSGraphCommsOperation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCommsOperation.h \ No newline at end of file diff --git a/include/MSGraphComplexExtensionValue.h b/include/MSGraphComplexExtensionValue.h new file mode 120000 index 00000000..cbbc1ebb --- /dev/null +++ b/include/MSGraphComplexExtensionValue.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphComplexExtensionValue.h \ No newline at end of file diff --git a/include/MSGraphComplianceInformation.h b/include/MSGraphComplianceInformation.h new file mode 120000 index 00000000..18ade61a --- /dev/null +++ b/include/MSGraphComplianceInformation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphComplianceInformation.h \ No newline at end of file diff --git a/include/MSGraphComplianceManagementPartner.h b/include/MSGraphComplianceManagementPartner.h new file mode 120000 index 00000000..27675f36 --- /dev/null +++ b/include/MSGraphComplianceManagementPartner.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphComplianceManagementPartner.h \ No newline at end of file diff --git a/include/MSGraphComplianceManagementPartnerAssignment.h b/include/MSGraphComplianceManagementPartnerAssignment.h new file mode 120000 index 00000000..f5402f7d --- /dev/null +++ b/include/MSGraphComplianceManagementPartnerAssignment.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphComplianceManagementPartnerAssignment.h \ No newline at end of file diff --git a/include/MSGraphComplianceState.h b/include/MSGraphComplianceState.h new file mode 120000 index 00000000..d27db054 --- /dev/null +++ b/include/MSGraphComplianceState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphComplianceState.h \ No newline at end of file diff --git a/include/MSGraphComplianceStatus.h b/include/MSGraphComplianceStatus.h new file mode 120000 index 00000000..5478d4a4 --- /dev/null +++ b/include/MSGraphComplianceStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphComplianceStatus.h \ No newline at end of file diff --git a/include/MSGraphConditionalAccessApplications.h b/include/MSGraphConditionalAccessApplications.h new file mode 120000 index 00000000..e92cfe82 --- /dev/null +++ b/include/MSGraphConditionalAccessApplications.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphConditionalAccessApplications.h \ No newline at end of file diff --git a/include/MSGraphConditionalAccessClientApp.h b/include/MSGraphConditionalAccessClientApp.h new file mode 120000 index 00000000..99b31b5a --- /dev/null +++ b/include/MSGraphConditionalAccessClientApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphConditionalAccessClientApp.h \ No newline at end of file diff --git a/include/MSGraphConditionalAccessConditionSet.h b/include/MSGraphConditionalAccessConditionSet.h new file mode 120000 index 00000000..0f54798b --- /dev/null +++ b/include/MSGraphConditionalAccessConditionSet.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphConditionalAccessConditionSet.h \ No newline at end of file diff --git a/include/MSGraphConditionalAccessDevicePlatform.h b/include/MSGraphConditionalAccessDevicePlatform.h new file mode 120000 index 00000000..7b1a92be --- /dev/null +++ b/include/MSGraphConditionalAccessDevicePlatform.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphConditionalAccessDevicePlatform.h \ No newline at end of file diff --git a/include/MSGraphConditionalAccessGrantControl.h b/include/MSGraphConditionalAccessGrantControl.h new file mode 120000 index 00000000..e3bd17a1 --- /dev/null +++ b/include/MSGraphConditionalAccessGrantControl.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphConditionalAccessGrantControl.h \ No newline at end of file diff --git a/include/MSGraphConditionalAccessGrantControls.h b/include/MSGraphConditionalAccessGrantControls.h new file mode 120000 index 00000000..1ef0699f --- /dev/null +++ b/include/MSGraphConditionalAccessGrantControls.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphConditionalAccessGrantControls.h \ No newline at end of file diff --git a/include/MSGraphConditionalAccessLocations.h b/include/MSGraphConditionalAccessLocations.h new file mode 120000 index 00000000..3f2dfa1d --- /dev/null +++ b/include/MSGraphConditionalAccessLocations.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphConditionalAccessLocations.h \ No newline at end of file diff --git a/include/MSGraphConditionalAccessPlatforms.h b/include/MSGraphConditionalAccessPlatforms.h new file mode 120000 index 00000000..ab3da8ba --- /dev/null +++ b/include/MSGraphConditionalAccessPlatforms.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphConditionalAccessPlatforms.h \ No newline at end of file diff --git a/include/MSGraphConditionalAccessPolicy.h b/include/MSGraphConditionalAccessPolicy.h new file mode 120000 index 00000000..2b8ed99a --- /dev/null +++ b/include/MSGraphConditionalAccessPolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphConditionalAccessPolicy.h \ No newline at end of file diff --git a/include/MSGraphConditionalAccessPolicyState.h b/include/MSGraphConditionalAccessPolicyState.h new file mode 120000 index 00000000..b85e4eb3 --- /dev/null +++ b/include/MSGraphConditionalAccessPolicyState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphConditionalAccessPolicyState.h \ No newline at end of file diff --git a/include/MSGraphConditionalAccessRoot.h b/include/MSGraphConditionalAccessRoot.h new file mode 120000 index 00000000..1c61ace2 --- /dev/null +++ b/include/MSGraphConditionalAccessRoot.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphConditionalAccessRoot.h \ No newline at end of file diff --git a/include/MSGraphConditionalAccessSessionControl.h b/include/MSGraphConditionalAccessSessionControl.h new file mode 120000 index 00000000..722ac0a1 --- /dev/null +++ b/include/MSGraphConditionalAccessSessionControl.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphConditionalAccessSessionControl.h \ No newline at end of file diff --git a/include/MSGraphConditionalAccessSessionControls.h b/include/MSGraphConditionalAccessSessionControls.h new file mode 120000 index 00000000..50dbe249 --- /dev/null +++ b/include/MSGraphConditionalAccessSessionControls.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphConditionalAccessSessionControls.h \ No newline at end of file diff --git a/include/MSGraphConditionalAccessStatus.h b/include/MSGraphConditionalAccessStatus.h new file mode 120000 index 00000000..27da7122 --- /dev/null +++ b/include/MSGraphConditionalAccessStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphConditionalAccessStatus.h \ No newline at end of file diff --git a/include/MSGraphConditionalAccessUsers.h b/include/MSGraphConditionalAccessUsers.h new file mode 120000 index 00000000..8b419e24 --- /dev/null +++ b/include/MSGraphConditionalAccessUsers.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphConditionalAccessUsers.h \ No newline at end of file diff --git a/include/MSGraphConfigurationManagerClientEnabledFeatures.h b/include/MSGraphConfigurationManagerClientEnabledFeatures.h new file mode 120000 index 00000000..b8113622 --- /dev/null +++ b/include/MSGraphConfigurationManagerClientEnabledFeatures.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphConfigurationManagerClientEnabledFeatures.h \ No newline at end of file diff --git a/include/MSGraphConnectionDirection.h b/include/MSGraphConnectionDirection.h new file mode 120000 index 00000000..e61ace96 --- /dev/null +++ b/include/MSGraphConnectionDirection.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphConnectionDirection.h \ No newline at end of file diff --git a/include/MSGraphConnectionStatus.h b/include/MSGraphConnectionStatus.h new file mode 120000 index 00000000..960ced18 --- /dev/null +++ b/include/MSGraphConnectionStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphConnectionStatus.h \ No newline at end of file diff --git a/include/MSGraphConsentRequestFilterByCurrentUserOptions.h b/include/MSGraphConsentRequestFilterByCurrentUserOptions.h new file mode 120000 index 00000000..2591b698 --- /dev/null +++ b/include/MSGraphConsentRequestFilterByCurrentUserOptions.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphConsentRequestFilterByCurrentUserOptions.h \ No newline at end of file diff --git a/include/MSGraphContact.h b/include/MSGraphContact.h new file mode 120000 index 00000000..5b201edb --- /dev/null +++ b/include/MSGraphContact.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphContact.h \ No newline at end of file diff --git a/include/MSGraphContactFolder.h b/include/MSGraphContactFolder.h new file mode 120000 index 00000000..22ea402e --- /dev/null +++ b/include/MSGraphContactFolder.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphContactFolder.h \ No newline at end of file diff --git a/include/MSGraphContentType.h b/include/MSGraphContentType.h new file mode 120000 index 00000000..1435e739 --- /dev/null +++ b/include/MSGraphContentType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphContentType.h \ No newline at end of file diff --git a/include/MSGraphContentTypeInfo.h b/include/MSGraphContentTypeInfo.h new file mode 120000 index 00000000..be00d4e3 --- /dev/null +++ b/include/MSGraphContentTypeInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphContentTypeInfo.h \ No newline at end of file diff --git a/include/MSGraphContentTypeOrder.h b/include/MSGraphContentTypeOrder.h new file mode 120000 index 00000000..f3520594 --- /dev/null +++ b/include/MSGraphContentTypeOrder.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphContentTypeOrder.h \ No newline at end of file diff --git a/include/MSGraphContract.h b/include/MSGraphContract.h new file mode 120000 index 00000000..301316ce --- /dev/null +++ b/include/MSGraphContract.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphContract.h \ No newline at end of file diff --git a/include/MSGraphControlScore.h b/include/MSGraphControlScore.h new file mode 120000 index 00000000..f30e9816 --- /dev/null +++ b/include/MSGraphControlScore.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphControlScore.h \ No newline at end of file diff --git a/include/MSGraphConversation.h b/include/MSGraphConversation.h new file mode 120000 index 00000000..048a3b45 --- /dev/null +++ b/include/MSGraphConversation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphConversation.h \ No newline at end of file diff --git a/include/MSGraphConversationMember.h b/include/MSGraphConversationMember.h new file mode 120000 index 00000000..37128763 --- /dev/null +++ b/include/MSGraphConversationMember.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphConversationMember.h \ No newline at end of file diff --git a/include/MSGraphConversationThread.h b/include/MSGraphConversationThread.h new file mode 120000 index 00000000..d9523f97 --- /dev/null +++ b/include/MSGraphConversationThread.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphConversationThread.h \ No newline at end of file diff --git a/include/MSGraphConvertIdResult.h b/include/MSGraphConvertIdResult.h new file mode 120000 index 00000000..514382de --- /dev/null +++ b/include/MSGraphConvertIdResult.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphConvertIdResult.h \ No newline at end of file diff --git a/include/MSGraphCopyNotebookModel.h b/include/MSGraphCopyNotebookModel.h new file mode 120000 index 00000000..e062c838 --- /dev/null +++ b/include/MSGraphCopyNotebookModel.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCopyNotebookModel.h \ No newline at end of file diff --git a/include/MSGraphCountryNamedLocation.h b/include/MSGraphCountryNamedLocation.h new file mode 120000 index 00000000..f8859177 --- /dev/null +++ b/include/MSGraphCountryNamedLocation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCountryNamedLocation.h \ No newline at end of file diff --git a/include/MSGraphCurrencyColumn.h b/include/MSGraphCurrencyColumn.h new file mode 120000 index 00000000..0ec21f07 --- /dev/null +++ b/include/MSGraphCurrencyColumn.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCurrencyColumn.h \ No newline at end of file diff --git a/include/MSGraphCustomTimeZone.h b/include/MSGraphCustomTimeZone.h new file mode 120000 index 00000000..0f4fdfe1 --- /dev/null +++ b/include/MSGraphCustomTimeZone.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphCustomTimeZone.h \ No newline at end of file diff --git a/include/MSGraphDataPolicyOperation.h b/include/MSGraphDataPolicyOperation.h new file mode 120000 index 00000000..6ea8c87e --- /dev/null +++ b/include/MSGraphDataPolicyOperation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDataPolicyOperation.h \ No newline at end of file diff --git a/include/MSGraphDataPolicyOperationStatus.h b/include/MSGraphDataPolicyOperationStatus.h new file mode 120000 index 00000000..371e7d8f --- /dev/null +++ b/include/MSGraphDataPolicyOperationStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDataPolicyOperationStatus.h \ No newline at end of file diff --git a/include/MSGraphDateTimeColumn.h b/include/MSGraphDateTimeColumn.h new file mode 120000 index 00000000..78815c16 --- /dev/null +++ b/include/MSGraphDateTimeColumn.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDateTimeColumn.h \ No newline at end of file diff --git a/include/MSGraphDateTimeTimeZone.h b/include/MSGraphDateTimeTimeZone.h new file mode 120000 index 00000000..e0c91a23 --- /dev/null +++ b/include/MSGraphDateTimeTimeZone.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDateTimeTimeZone.h \ No newline at end of file diff --git a/include/MSGraphDayOfWeek.h b/include/MSGraphDayOfWeek.h new file mode 120000 index 00000000..05ef1992 --- /dev/null +++ b/include/MSGraphDayOfWeek.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDayOfWeek.h \ No newline at end of file diff --git a/include/MSGraphDaylightTimeZoneOffset.h b/include/MSGraphDaylightTimeZoneOffset.h new file mode 120000 index 00000000..16909196 --- /dev/null +++ b/include/MSGraphDaylightTimeZoneOffset.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDaylightTimeZoneOffset.h \ No newline at end of file diff --git a/include/MSGraphDefaultColumnValue.h b/include/MSGraphDefaultColumnValue.h new file mode 120000 index 00000000..0f1a1b9b --- /dev/null +++ b/include/MSGraphDefaultColumnValue.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDefaultColumnValue.h \ No newline at end of file diff --git a/include/MSGraphDefaultManagedAppProtection.h b/include/MSGraphDefaultManagedAppProtection.h new file mode 120000 index 00000000..ff80ba96 --- /dev/null +++ b/include/MSGraphDefaultManagedAppProtection.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDefaultManagedAppProtection.h \ No newline at end of file diff --git a/include/MSGraphDefaultUserRolePermissions.h b/include/MSGraphDefaultUserRolePermissions.h new file mode 120000 index 00000000..a85a7f89 --- /dev/null +++ b/include/MSGraphDefaultUserRolePermissions.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDefaultUserRolePermissions.h \ No newline at end of file diff --git a/include/MSGraphDefenderCloudBlockLevelType.h b/include/MSGraphDefenderCloudBlockLevelType.h new file mode 120000 index 00000000..46b6c7d2 --- /dev/null +++ b/include/MSGraphDefenderCloudBlockLevelType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDefenderCloudBlockLevelType.h \ No newline at end of file diff --git a/include/MSGraphDefenderDetectedMalwareActions.h b/include/MSGraphDefenderDetectedMalwareActions.h new file mode 120000 index 00000000..e71adcf0 --- /dev/null +++ b/include/MSGraphDefenderDetectedMalwareActions.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDefenderDetectedMalwareActions.h \ No newline at end of file diff --git a/include/MSGraphDefenderMonitorFileActivity.h b/include/MSGraphDefenderMonitorFileActivity.h new file mode 120000 index 00000000..08bcc8f7 --- /dev/null +++ b/include/MSGraphDefenderMonitorFileActivity.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDefenderMonitorFileActivity.h \ No newline at end of file diff --git a/include/MSGraphDefenderPromptForSampleSubmission.h b/include/MSGraphDefenderPromptForSampleSubmission.h new file mode 120000 index 00000000..a85e433a --- /dev/null +++ b/include/MSGraphDefenderPromptForSampleSubmission.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDefenderPromptForSampleSubmission.h \ No newline at end of file diff --git a/include/MSGraphDefenderScanType.h b/include/MSGraphDefenderScanType.h new file mode 120000 index 00000000..f76e9a11 --- /dev/null +++ b/include/MSGraphDefenderScanType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDefenderScanType.h \ No newline at end of file diff --git a/include/MSGraphDefenderThreatAction.h b/include/MSGraphDefenderThreatAction.h new file mode 120000 index 00000000..add8534c --- /dev/null +++ b/include/MSGraphDefenderThreatAction.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDefenderThreatAction.h \ No newline at end of file diff --git a/include/MSGraphDelegateMeetingMessageDeliveryOptions.h b/include/MSGraphDelegateMeetingMessageDeliveryOptions.h new file mode 120000 index 00000000..f2ed506f --- /dev/null +++ b/include/MSGraphDelegateMeetingMessageDeliveryOptions.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDelegateMeetingMessageDeliveryOptions.h \ No newline at end of file diff --git a/include/MSGraphDelegatedPermissionClassification.h b/include/MSGraphDelegatedPermissionClassification.h new file mode 120000 index 00000000..3f99d934 --- /dev/null +++ b/include/MSGraphDelegatedPermissionClassification.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDelegatedPermissionClassification.h \ No newline at end of file diff --git a/include/MSGraphDeleteUserFromSharedAppleDeviceActionResult.h b/include/MSGraphDeleteUserFromSharedAppleDeviceActionResult.h new file mode 120000 index 00000000..8248a7a1 --- /dev/null +++ b/include/MSGraphDeleteUserFromSharedAppleDeviceActionResult.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeleteUserFromSharedAppleDeviceActionResult.h \ No newline at end of file diff --git a/include/MSGraphDeleted.h b/include/MSGraphDeleted.h new file mode 120000 index 00000000..3b209803 --- /dev/null +++ b/include/MSGraphDeleted.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeleted.h \ No newline at end of file diff --git a/include/MSGraphDetailsInfo.h b/include/MSGraphDetailsInfo.h new file mode 120000 index 00000000..e97a0740 --- /dev/null +++ b/include/MSGraphDetailsInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDetailsInfo.h \ No newline at end of file diff --git a/include/MSGraphDetectedApp.h b/include/MSGraphDetectedApp.h new file mode 120000 index 00000000..cbaf559a --- /dev/null +++ b/include/MSGraphDetectedApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDetectedApp.h \ No newline at end of file diff --git a/include/MSGraphDevice.h b/include/MSGraphDevice.h new file mode 120000 index 00000000..13a57600 --- /dev/null +++ b/include/MSGraphDevice.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDevice.h \ No newline at end of file diff --git a/include/MSGraphDeviceActionResult.h b/include/MSGraphDeviceActionResult.h new file mode 120000 index 00000000..3ebe6884 --- /dev/null +++ b/include/MSGraphDeviceActionResult.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceActionResult.h \ No newline at end of file diff --git a/include/MSGraphDeviceAndAppManagementAssignmentTarget.h b/include/MSGraphDeviceAndAppManagementAssignmentTarget.h new file mode 120000 index 00000000..fd1cbf13 --- /dev/null +++ b/include/MSGraphDeviceAndAppManagementAssignmentTarget.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceAndAppManagementAssignmentTarget.h \ No newline at end of file diff --git a/include/MSGraphDeviceAndAppManagementRoleAssignment.h b/include/MSGraphDeviceAndAppManagementRoleAssignment.h new file mode 120000 index 00000000..9a8418d5 --- /dev/null +++ b/include/MSGraphDeviceAndAppManagementRoleAssignment.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceAndAppManagementRoleAssignment.h \ No newline at end of file diff --git a/include/MSGraphDeviceAndAppManagementRoleDefinition.h b/include/MSGraphDeviceAndAppManagementRoleDefinition.h new file mode 120000 index 00000000..ba292c31 --- /dev/null +++ b/include/MSGraphDeviceAndAppManagementRoleDefinition.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceAndAppManagementRoleDefinition.h \ No newline at end of file diff --git a/include/MSGraphDeviceAppManagement.h b/include/MSGraphDeviceAppManagement.h new file mode 120000 index 00000000..347cc747 --- /dev/null +++ b/include/MSGraphDeviceAppManagement.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceAppManagement.h \ No newline at end of file diff --git a/include/MSGraphDeviceCategory.h b/include/MSGraphDeviceCategory.h new file mode 120000 index 00000000..7b580c66 --- /dev/null +++ b/include/MSGraphDeviceCategory.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceCategory.h \ No newline at end of file diff --git a/include/MSGraphDeviceComplianceActionItem.h b/include/MSGraphDeviceComplianceActionItem.h new file mode 120000 index 00000000..05608087 --- /dev/null +++ b/include/MSGraphDeviceComplianceActionItem.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceComplianceActionItem.h \ No newline at end of file diff --git a/include/MSGraphDeviceComplianceActionType.h b/include/MSGraphDeviceComplianceActionType.h new file mode 120000 index 00000000..759ee280 --- /dev/null +++ b/include/MSGraphDeviceComplianceActionType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceComplianceActionType.h \ No newline at end of file diff --git a/include/MSGraphDeviceComplianceDeviceOverview.h b/include/MSGraphDeviceComplianceDeviceOverview.h new file mode 120000 index 00000000..0c4e7e00 --- /dev/null +++ b/include/MSGraphDeviceComplianceDeviceOverview.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceComplianceDeviceOverview.h \ No newline at end of file diff --git a/include/MSGraphDeviceComplianceDeviceStatus.h b/include/MSGraphDeviceComplianceDeviceStatus.h new file mode 120000 index 00000000..920c8ae1 --- /dev/null +++ b/include/MSGraphDeviceComplianceDeviceStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceComplianceDeviceStatus.h \ No newline at end of file diff --git a/include/MSGraphDeviceCompliancePolicy.h b/include/MSGraphDeviceCompliancePolicy.h new file mode 120000 index 00000000..bb8e4a24 --- /dev/null +++ b/include/MSGraphDeviceCompliancePolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceCompliancePolicy.h \ No newline at end of file diff --git a/include/MSGraphDeviceCompliancePolicyAssignment.h b/include/MSGraphDeviceCompliancePolicyAssignment.h new file mode 120000 index 00000000..a6569d96 --- /dev/null +++ b/include/MSGraphDeviceCompliancePolicyAssignment.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceCompliancePolicyAssignment.h \ No newline at end of file diff --git a/include/MSGraphDeviceCompliancePolicyDeviceStateSummary.h b/include/MSGraphDeviceCompliancePolicyDeviceStateSummary.h new file mode 120000 index 00000000..e7961dcd --- /dev/null +++ b/include/MSGraphDeviceCompliancePolicyDeviceStateSummary.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceCompliancePolicyDeviceStateSummary.h \ No newline at end of file diff --git a/include/MSGraphDeviceCompliancePolicySettingState.h b/include/MSGraphDeviceCompliancePolicySettingState.h new file mode 120000 index 00000000..264d6b7e --- /dev/null +++ b/include/MSGraphDeviceCompliancePolicySettingState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceCompliancePolicySettingState.h \ No newline at end of file diff --git a/include/MSGraphDeviceCompliancePolicySettingStateSummary.h b/include/MSGraphDeviceCompliancePolicySettingStateSummary.h new file mode 120000 index 00000000..1ee22fa4 --- /dev/null +++ b/include/MSGraphDeviceCompliancePolicySettingStateSummary.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceCompliancePolicySettingStateSummary.h \ No newline at end of file diff --git a/include/MSGraphDeviceCompliancePolicyState.h b/include/MSGraphDeviceCompliancePolicyState.h new file mode 120000 index 00000000..797a03f3 --- /dev/null +++ b/include/MSGraphDeviceCompliancePolicyState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceCompliancePolicyState.h \ No newline at end of file diff --git a/include/MSGraphDeviceComplianceScheduledActionForRule.h b/include/MSGraphDeviceComplianceScheduledActionForRule.h new file mode 120000 index 00000000..0f881abe --- /dev/null +++ b/include/MSGraphDeviceComplianceScheduledActionForRule.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceComplianceScheduledActionForRule.h \ No newline at end of file diff --git a/include/MSGraphDeviceComplianceSettingState.h b/include/MSGraphDeviceComplianceSettingState.h new file mode 120000 index 00000000..546ee7ea --- /dev/null +++ b/include/MSGraphDeviceComplianceSettingState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceComplianceSettingState.h \ No newline at end of file diff --git a/include/MSGraphDeviceComplianceUserOverview.h b/include/MSGraphDeviceComplianceUserOverview.h new file mode 120000 index 00000000..6f3a9963 --- /dev/null +++ b/include/MSGraphDeviceComplianceUserOverview.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceComplianceUserOverview.h \ No newline at end of file diff --git a/include/MSGraphDeviceComplianceUserStatus.h b/include/MSGraphDeviceComplianceUserStatus.h new file mode 120000 index 00000000..6466bcda --- /dev/null +++ b/include/MSGraphDeviceComplianceUserStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceComplianceUserStatus.h \ No newline at end of file diff --git a/include/MSGraphDeviceConfiguration.h b/include/MSGraphDeviceConfiguration.h new file mode 120000 index 00000000..f2c54e43 --- /dev/null +++ b/include/MSGraphDeviceConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceConfiguration.h \ No newline at end of file diff --git a/include/MSGraphDeviceConfigurationAssignment.h b/include/MSGraphDeviceConfigurationAssignment.h new file mode 120000 index 00000000..bee66464 --- /dev/null +++ b/include/MSGraphDeviceConfigurationAssignment.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceConfigurationAssignment.h \ No newline at end of file diff --git a/include/MSGraphDeviceConfigurationDeviceOverview.h b/include/MSGraphDeviceConfigurationDeviceOverview.h new file mode 120000 index 00000000..cf6eebbb --- /dev/null +++ b/include/MSGraphDeviceConfigurationDeviceOverview.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceConfigurationDeviceOverview.h \ No newline at end of file diff --git a/include/MSGraphDeviceConfigurationDeviceStateSummary.h b/include/MSGraphDeviceConfigurationDeviceStateSummary.h new file mode 120000 index 00000000..46080188 --- /dev/null +++ b/include/MSGraphDeviceConfigurationDeviceStateSummary.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceConfigurationDeviceStateSummary.h \ No newline at end of file diff --git a/include/MSGraphDeviceConfigurationDeviceStatus.h b/include/MSGraphDeviceConfigurationDeviceStatus.h new file mode 120000 index 00000000..fd27aab0 --- /dev/null +++ b/include/MSGraphDeviceConfigurationDeviceStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceConfigurationDeviceStatus.h \ No newline at end of file diff --git a/include/MSGraphDeviceConfigurationSettingState.h b/include/MSGraphDeviceConfigurationSettingState.h new file mode 120000 index 00000000..cd4d332e --- /dev/null +++ b/include/MSGraphDeviceConfigurationSettingState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceConfigurationSettingState.h \ No newline at end of file diff --git a/include/MSGraphDeviceConfigurationState.h b/include/MSGraphDeviceConfigurationState.h new file mode 120000 index 00000000..a98468aa --- /dev/null +++ b/include/MSGraphDeviceConfigurationState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceConfigurationState.h \ No newline at end of file diff --git a/include/MSGraphDeviceConfigurationUserOverview.h b/include/MSGraphDeviceConfigurationUserOverview.h new file mode 120000 index 00000000..50d0284a --- /dev/null +++ b/include/MSGraphDeviceConfigurationUserOverview.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceConfigurationUserOverview.h \ No newline at end of file diff --git a/include/MSGraphDeviceConfigurationUserStatus.h b/include/MSGraphDeviceConfigurationUserStatus.h new file mode 120000 index 00000000..d926f7cd --- /dev/null +++ b/include/MSGraphDeviceConfigurationUserStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceConfigurationUserStatus.h \ No newline at end of file diff --git a/include/MSGraphDeviceDetail.h b/include/MSGraphDeviceDetail.h new file mode 120000 index 00000000..2375f0c5 --- /dev/null +++ b/include/MSGraphDeviceDetail.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceDetail.h \ No newline at end of file diff --git a/include/MSGraphDeviceEnrollmentConfiguration.h b/include/MSGraphDeviceEnrollmentConfiguration.h new file mode 120000 index 00000000..2fad11eb --- /dev/null +++ b/include/MSGraphDeviceEnrollmentConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceEnrollmentConfiguration.h \ No newline at end of file diff --git a/include/MSGraphDeviceEnrollmentFailureReason.h b/include/MSGraphDeviceEnrollmentFailureReason.h new file mode 120000 index 00000000..81d45da6 --- /dev/null +++ b/include/MSGraphDeviceEnrollmentFailureReason.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceEnrollmentFailureReason.h \ No newline at end of file diff --git a/include/MSGraphDeviceEnrollmentLimitConfiguration.h b/include/MSGraphDeviceEnrollmentLimitConfiguration.h new file mode 120000 index 00000000..c4a130b5 --- /dev/null +++ b/include/MSGraphDeviceEnrollmentLimitConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceEnrollmentLimitConfiguration.h \ No newline at end of file diff --git a/include/MSGraphDeviceEnrollmentPlatformRestriction.h b/include/MSGraphDeviceEnrollmentPlatformRestriction.h new file mode 120000 index 00000000..93a7495f --- /dev/null +++ b/include/MSGraphDeviceEnrollmentPlatformRestriction.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceEnrollmentPlatformRestriction.h \ No newline at end of file diff --git a/include/MSGraphDeviceEnrollmentPlatformRestrictionsConfiguration.h b/include/MSGraphDeviceEnrollmentPlatformRestrictionsConfiguration.h new file mode 120000 index 00000000..e87f91db --- /dev/null +++ b/include/MSGraphDeviceEnrollmentPlatformRestrictionsConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceEnrollmentPlatformRestrictionsConfiguration.h \ No newline at end of file diff --git a/include/MSGraphDeviceEnrollmentType.h b/include/MSGraphDeviceEnrollmentType.h new file mode 120000 index 00000000..a00cc213 --- /dev/null +++ b/include/MSGraphDeviceEnrollmentType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceEnrollmentType.h \ No newline at end of file diff --git a/include/MSGraphDeviceEnrollmentWindowsHelloForBusinessConfiguration.h b/include/MSGraphDeviceEnrollmentWindowsHelloForBusinessConfiguration.h new file mode 120000 index 00000000..5f92c1d8 --- /dev/null +++ b/include/MSGraphDeviceEnrollmentWindowsHelloForBusinessConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceEnrollmentWindowsHelloForBusinessConfiguration.h \ No newline at end of file diff --git a/include/MSGraphDeviceExchangeAccessStateSummary.h b/include/MSGraphDeviceExchangeAccessStateSummary.h new file mode 120000 index 00000000..df64d547 --- /dev/null +++ b/include/MSGraphDeviceExchangeAccessStateSummary.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceExchangeAccessStateSummary.h \ No newline at end of file diff --git a/include/MSGraphDeviceGeoLocation.h b/include/MSGraphDeviceGeoLocation.h new file mode 120000 index 00000000..8a7f436c --- /dev/null +++ b/include/MSGraphDeviceGeoLocation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceGeoLocation.h \ No newline at end of file diff --git a/include/MSGraphDeviceHealthAttestationState.h b/include/MSGraphDeviceHealthAttestationState.h new file mode 120000 index 00000000..8ca7c337 --- /dev/null +++ b/include/MSGraphDeviceHealthAttestationState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceHealthAttestationState.h \ No newline at end of file diff --git a/include/MSGraphDeviceInstallState.h b/include/MSGraphDeviceInstallState.h new file mode 120000 index 00000000..0a52abc1 --- /dev/null +++ b/include/MSGraphDeviceInstallState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceInstallState.h \ No newline at end of file diff --git a/include/MSGraphDeviceManagement.h b/include/MSGraphDeviceManagement.h new file mode 120000 index 00000000..25863f69 --- /dev/null +++ b/include/MSGraphDeviceManagement.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceManagement.h \ No newline at end of file diff --git a/include/MSGraphDeviceManagementExchangeAccessState.h b/include/MSGraphDeviceManagementExchangeAccessState.h new file mode 120000 index 00000000..d49f1568 --- /dev/null +++ b/include/MSGraphDeviceManagementExchangeAccessState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceManagementExchangeAccessState.h \ No newline at end of file diff --git a/include/MSGraphDeviceManagementExchangeAccessStateReason.h b/include/MSGraphDeviceManagementExchangeAccessStateReason.h new file mode 120000 index 00000000..049ba196 --- /dev/null +++ b/include/MSGraphDeviceManagementExchangeAccessStateReason.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceManagementExchangeAccessStateReason.h \ No newline at end of file diff --git a/include/MSGraphDeviceManagementExchangeConnector.h b/include/MSGraphDeviceManagementExchangeConnector.h new file mode 120000 index 00000000..38b69c0b --- /dev/null +++ b/include/MSGraphDeviceManagementExchangeConnector.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceManagementExchangeConnector.h \ No newline at end of file diff --git a/include/MSGraphDeviceManagementExchangeConnectorStatus.h b/include/MSGraphDeviceManagementExchangeConnectorStatus.h new file mode 120000 index 00000000..cfa417d0 --- /dev/null +++ b/include/MSGraphDeviceManagementExchangeConnectorStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceManagementExchangeConnectorStatus.h \ No newline at end of file diff --git a/include/MSGraphDeviceManagementExchangeConnectorSyncType.h b/include/MSGraphDeviceManagementExchangeConnectorSyncType.h new file mode 120000 index 00000000..79d541b4 --- /dev/null +++ b/include/MSGraphDeviceManagementExchangeConnectorSyncType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceManagementExchangeConnectorSyncType.h \ No newline at end of file diff --git a/include/MSGraphDeviceManagementExchangeConnectorType.h b/include/MSGraphDeviceManagementExchangeConnectorType.h new file mode 120000 index 00000000..0f2594b4 --- /dev/null +++ b/include/MSGraphDeviceManagementExchangeConnectorType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceManagementExchangeConnectorType.h \ No newline at end of file diff --git a/include/MSGraphDeviceManagementPartner.h b/include/MSGraphDeviceManagementPartner.h new file mode 120000 index 00000000..61ee4033 --- /dev/null +++ b/include/MSGraphDeviceManagementPartner.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceManagementPartner.h \ No newline at end of file diff --git a/include/MSGraphDeviceManagementPartnerAppType.h b/include/MSGraphDeviceManagementPartnerAppType.h new file mode 120000 index 00000000..b6910ade --- /dev/null +++ b/include/MSGraphDeviceManagementPartnerAppType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceManagementPartnerAppType.h \ No newline at end of file diff --git a/include/MSGraphDeviceManagementPartnerTenantState.h b/include/MSGraphDeviceManagementPartnerTenantState.h new file mode 120000 index 00000000..ef72cdf7 --- /dev/null +++ b/include/MSGraphDeviceManagementPartnerTenantState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceManagementPartnerTenantState.h \ No newline at end of file diff --git a/include/MSGraphDeviceManagementSettings.h b/include/MSGraphDeviceManagementSettings.h new file mode 120000 index 00000000..d64161c3 --- /dev/null +++ b/include/MSGraphDeviceManagementSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceManagementSettings.h \ No newline at end of file diff --git a/include/MSGraphDeviceManagementSubscriptionState.h b/include/MSGraphDeviceManagementSubscriptionState.h new file mode 120000 index 00000000..459d5833 --- /dev/null +++ b/include/MSGraphDeviceManagementSubscriptionState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceManagementSubscriptionState.h \ No newline at end of file diff --git a/include/MSGraphDeviceManagementTroubleshootingEvent.h b/include/MSGraphDeviceManagementTroubleshootingEvent.h new file mode 120000 index 00000000..5322615d --- /dev/null +++ b/include/MSGraphDeviceManagementTroubleshootingEvent.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceManagementTroubleshootingEvent.h \ No newline at end of file diff --git a/include/MSGraphDeviceOperatingSystemSummary.h b/include/MSGraphDeviceOperatingSystemSummary.h new file mode 120000 index 00000000..77dcee72 --- /dev/null +++ b/include/MSGraphDeviceOperatingSystemSummary.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceOperatingSystemSummary.h \ No newline at end of file diff --git a/include/MSGraphDeviceRegistrationState.h b/include/MSGraphDeviceRegistrationState.h new file mode 120000 index 00000000..91e68aae --- /dev/null +++ b/include/MSGraphDeviceRegistrationState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceRegistrationState.h \ No newline at end of file diff --git a/include/MSGraphDeviceThreatProtectionLevel.h b/include/MSGraphDeviceThreatProtectionLevel.h new file mode 120000 index 00000000..188b0c3c --- /dev/null +++ b/include/MSGraphDeviceThreatProtectionLevel.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDeviceThreatProtectionLevel.h \ No newline at end of file diff --git a/include/MSGraphDiagnostic.h b/include/MSGraphDiagnostic.h new file mode 120000 index 00000000..a4c7a78d --- /dev/null +++ b/include/MSGraphDiagnostic.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDiagnostic.h \ No newline at end of file diff --git a/include/MSGraphDiagnosticDataSubmissionMode.h b/include/MSGraphDiagnosticDataSubmissionMode.h new file mode 120000 index 00000000..a0b06e5c --- /dev/null +++ b/include/MSGraphDiagnosticDataSubmissionMode.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDiagnosticDataSubmissionMode.h \ No newline at end of file diff --git a/include/MSGraphDirectory.h b/include/MSGraphDirectory.h new file mode 120000 index 00000000..5c782b8c --- /dev/null +++ b/include/MSGraphDirectory.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDirectory.h \ No newline at end of file diff --git a/include/MSGraphDirectoryAudit.h b/include/MSGraphDirectoryAudit.h new file mode 120000 index 00000000..e44a74f7 --- /dev/null +++ b/include/MSGraphDirectoryAudit.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDirectoryAudit.h \ No newline at end of file diff --git a/include/MSGraphDirectoryObject.h b/include/MSGraphDirectoryObject.h new file mode 120000 index 00000000..cc4e0f83 --- /dev/null +++ b/include/MSGraphDirectoryObject.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDirectoryObject.h \ No newline at end of file diff --git a/include/MSGraphDirectoryObjectPartnerReference.h b/include/MSGraphDirectoryObjectPartnerReference.h new file mode 120000 index 00000000..852070e4 --- /dev/null +++ b/include/MSGraphDirectoryObjectPartnerReference.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDirectoryObjectPartnerReference.h \ No newline at end of file diff --git a/include/MSGraphDirectoryRole.h b/include/MSGraphDirectoryRole.h new file mode 120000 index 00000000..efca0db0 --- /dev/null +++ b/include/MSGraphDirectoryRole.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDirectoryRole.h \ No newline at end of file diff --git a/include/MSGraphDirectoryRoleTemplate.h b/include/MSGraphDirectoryRoleTemplate.h new file mode 120000 index 00000000..c99a1278 --- /dev/null +++ b/include/MSGraphDirectoryRoleTemplate.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDirectoryRoleTemplate.h \ No newline at end of file diff --git a/include/MSGraphDomain.h b/include/MSGraphDomain.h new file mode 120000 index 00000000..ef1b2df4 --- /dev/null +++ b/include/MSGraphDomain.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDomain.h \ No newline at end of file diff --git a/include/MSGraphDomainDnsCnameRecord.h b/include/MSGraphDomainDnsCnameRecord.h new file mode 120000 index 00000000..ad163d6d --- /dev/null +++ b/include/MSGraphDomainDnsCnameRecord.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDomainDnsCnameRecord.h \ No newline at end of file diff --git a/include/MSGraphDomainDnsMxRecord.h b/include/MSGraphDomainDnsMxRecord.h new file mode 120000 index 00000000..a1e180a2 --- /dev/null +++ b/include/MSGraphDomainDnsMxRecord.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDomainDnsMxRecord.h \ No newline at end of file diff --git a/include/MSGraphDomainDnsRecord.h b/include/MSGraphDomainDnsRecord.h new file mode 120000 index 00000000..ac133c10 --- /dev/null +++ b/include/MSGraphDomainDnsRecord.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDomainDnsRecord.h \ No newline at end of file diff --git a/include/MSGraphDomainDnsSrvRecord.h b/include/MSGraphDomainDnsSrvRecord.h new file mode 120000 index 00000000..b905e9ab --- /dev/null +++ b/include/MSGraphDomainDnsSrvRecord.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDomainDnsSrvRecord.h \ No newline at end of file diff --git a/include/MSGraphDomainDnsTxtRecord.h b/include/MSGraphDomainDnsTxtRecord.h new file mode 120000 index 00000000..07bff989 --- /dev/null +++ b/include/MSGraphDomainDnsTxtRecord.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDomainDnsTxtRecord.h \ No newline at end of file diff --git a/include/MSGraphDomainDnsUnavailableRecord.h b/include/MSGraphDomainDnsUnavailableRecord.h new file mode 120000 index 00000000..86f09aef --- /dev/null +++ b/include/MSGraphDomainDnsUnavailableRecord.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDomainDnsUnavailableRecord.h \ No newline at end of file diff --git a/include/MSGraphDomainState.h b/include/MSGraphDomainState.h new file mode 120000 index 00000000..5a09c25a --- /dev/null +++ b/include/MSGraphDomainState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDomainState.h \ No newline at end of file diff --git a/include/MSGraphDrive.h b/include/MSGraphDrive.h new file mode 120000 index 00000000..f707903a --- /dev/null +++ b/include/MSGraphDrive.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDrive.h \ No newline at end of file diff --git a/include/MSGraphDriveItem.h b/include/MSGraphDriveItem.h new file mode 120000 index 00000000..5cc71e4b --- /dev/null +++ b/include/MSGraphDriveItem.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDriveItem.h \ No newline at end of file diff --git a/include/MSGraphDriveItemUploadableProperties.h b/include/MSGraphDriveItemUploadableProperties.h new file mode 120000 index 00000000..b7667df9 --- /dev/null +++ b/include/MSGraphDriveItemUploadableProperties.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDriveItemUploadableProperties.h \ No newline at end of file diff --git a/include/MSGraphDriveItemVersion.h b/include/MSGraphDriveItemVersion.h new file mode 120000 index 00000000..d91ec6e0 --- /dev/null +++ b/include/MSGraphDriveItemVersion.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDriveItemVersion.h \ No newline at end of file diff --git a/include/MSGraphDriveRecipient.h b/include/MSGraphDriveRecipient.h new file mode 120000 index 00000000..0bf3ff1e --- /dev/null +++ b/include/MSGraphDriveRecipient.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphDriveRecipient.h \ No newline at end of file diff --git a/include/MSGraphEBookInstallSummary.h b/include/MSGraphEBookInstallSummary.h new file mode 120000 index 00000000..91adf055 --- /dev/null +++ b/include/MSGraphEBookInstallSummary.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEBookInstallSummary.h \ No newline at end of file diff --git a/include/MSGraphEdgeCookiePolicy.h b/include/MSGraphEdgeCookiePolicy.h new file mode 120000 index 00000000..4db09914 --- /dev/null +++ b/include/MSGraphEdgeCookiePolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEdgeCookiePolicy.h \ No newline at end of file diff --git a/include/MSGraphEdgeSearchEngine.h b/include/MSGraphEdgeSearchEngine.h new file mode 120000 index 00000000..02f20a28 --- /dev/null +++ b/include/MSGraphEdgeSearchEngine.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEdgeSearchEngine.h \ No newline at end of file diff --git a/include/MSGraphEdgeSearchEngineBase.h b/include/MSGraphEdgeSearchEngineBase.h new file mode 120000 index 00000000..4cc0fa98 --- /dev/null +++ b/include/MSGraphEdgeSearchEngineBase.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEdgeSearchEngineBase.h \ No newline at end of file diff --git a/include/MSGraphEdgeSearchEngineCustom.h b/include/MSGraphEdgeSearchEngineCustom.h new file mode 120000 index 00000000..4adac9c7 --- /dev/null +++ b/include/MSGraphEdgeSearchEngineCustom.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEdgeSearchEngineCustom.h \ No newline at end of file diff --git a/include/MSGraphEdgeSearchEngineType.h b/include/MSGraphEdgeSearchEngineType.h new file mode 120000 index 00000000..974822e0 --- /dev/null +++ b/include/MSGraphEdgeSearchEngineType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEdgeSearchEngineType.h \ No newline at end of file diff --git a/include/MSGraphEditionUpgradeConfiguration.h b/include/MSGraphEditionUpgradeConfiguration.h new file mode 120000 index 00000000..f7eadff8 --- /dev/null +++ b/include/MSGraphEditionUpgradeConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEditionUpgradeConfiguration.h \ No newline at end of file diff --git a/include/MSGraphEditionUpgradeLicenseType.h b/include/MSGraphEditionUpgradeLicenseType.h new file mode 120000 index 00000000..5d6e8291 --- /dev/null +++ b/include/MSGraphEditionUpgradeLicenseType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEditionUpgradeLicenseType.h \ No newline at end of file diff --git a/include/MSGraphEducationClass.h b/include/MSGraphEducationClass.h new file mode 120000 index 00000000..3ab101df --- /dev/null +++ b/include/MSGraphEducationClass.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEducationClass.h \ No newline at end of file diff --git a/include/MSGraphEducationCourse.h b/include/MSGraphEducationCourse.h new file mode 120000 index 00000000..4b6101a1 --- /dev/null +++ b/include/MSGraphEducationCourse.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEducationCourse.h \ No newline at end of file diff --git a/include/MSGraphEducationExternalSource.h b/include/MSGraphEducationExternalSource.h new file mode 120000 index 00000000..918ee5b1 --- /dev/null +++ b/include/MSGraphEducationExternalSource.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEducationExternalSource.h \ No newline at end of file diff --git a/include/MSGraphEducationGender.h b/include/MSGraphEducationGender.h new file mode 120000 index 00000000..61528a20 --- /dev/null +++ b/include/MSGraphEducationGender.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEducationGender.h \ No newline at end of file diff --git a/include/MSGraphEducationOnPremisesInfo.h b/include/MSGraphEducationOnPremisesInfo.h new file mode 120000 index 00000000..2f501d85 --- /dev/null +++ b/include/MSGraphEducationOnPremisesInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEducationOnPremisesInfo.h \ No newline at end of file diff --git a/include/MSGraphEducationOrganization.h b/include/MSGraphEducationOrganization.h new file mode 120000 index 00000000..2fab35d6 --- /dev/null +++ b/include/MSGraphEducationOrganization.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEducationOrganization.h \ No newline at end of file diff --git a/include/MSGraphEducationRoot.h b/include/MSGraphEducationRoot.h new file mode 120000 index 00000000..a58b6fdb --- /dev/null +++ b/include/MSGraphEducationRoot.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEducationRoot.h \ No newline at end of file diff --git a/include/MSGraphEducationSchool.h b/include/MSGraphEducationSchool.h new file mode 120000 index 00000000..48c06929 --- /dev/null +++ b/include/MSGraphEducationSchool.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEducationSchool.h \ No newline at end of file diff --git a/include/MSGraphEducationStudent.h b/include/MSGraphEducationStudent.h new file mode 120000 index 00000000..a0019f1a --- /dev/null +++ b/include/MSGraphEducationStudent.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEducationStudent.h \ No newline at end of file diff --git a/include/MSGraphEducationTeacher.h b/include/MSGraphEducationTeacher.h new file mode 120000 index 00000000..97ce0269 --- /dev/null +++ b/include/MSGraphEducationTeacher.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEducationTeacher.h \ No newline at end of file diff --git a/include/MSGraphEducationTerm.h b/include/MSGraphEducationTerm.h new file mode 120000 index 00000000..fc90da82 --- /dev/null +++ b/include/MSGraphEducationTerm.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEducationTerm.h \ No newline at end of file diff --git a/include/MSGraphEducationUser.h b/include/MSGraphEducationUser.h new file mode 120000 index 00000000..a38a7c27 --- /dev/null +++ b/include/MSGraphEducationUser.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEducationUser.h \ No newline at end of file diff --git a/include/MSGraphEducationUserRole.h b/include/MSGraphEducationUserRole.h new file mode 120000 index 00000000..afb815b8 --- /dev/null +++ b/include/MSGraphEducationUserRole.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEducationUserRole.h \ No newline at end of file diff --git a/include/MSGraphEmailAddress.h b/include/MSGraphEmailAddress.h new file mode 120000 index 00000000..31c8bdb4 --- /dev/null +++ b/include/MSGraphEmailAddress.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEmailAddress.h \ No newline at end of file diff --git a/include/MSGraphEmailAuthenticationMethodConfiguration.h b/include/MSGraphEmailAuthenticationMethodConfiguration.h new file mode 120000 index 00000000..d1c5586c --- /dev/null +++ b/include/MSGraphEmailAuthenticationMethodConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEmailAuthenticationMethodConfiguration.h \ No newline at end of file diff --git a/include/MSGraphEmailFileAssessmentRequest.h b/include/MSGraphEmailFileAssessmentRequest.h new file mode 120000 index 00000000..19c7024b --- /dev/null +++ b/include/MSGraphEmailFileAssessmentRequest.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEmailFileAssessmentRequest.h \ No newline at end of file diff --git a/include/MSGraphEmailRole.h b/include/MSGraphEmailRole.h new file mode 120000 index 00000000..69962649 --- /dev/null +++ b/include/MSGraphEmailRole.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEmailRole.h \ No newline at end of file diff --git a/include/MSGraphEmployeeOrgData.h b/include/MSGraphEmployeeOrgData.h new file mode 120000 index 00000000..7e8de4de --- /dev/null +++ b/include/MSGraphEmployeeOrgData.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEmployeeOrgData.h \ No newline at end of file diff --git a/include/MSGraphEnablement.h b/include/MSGraphEnablement.h new file mode 120000 index 00000000..af6c774c --- /dev/null +++ b/include/MSGraphEnablement.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEnablement.h \ No newline at end of file diff --git a/include/MSGraphEndpoint.h b/include/MSGraphEndpoint.h new file mode 120000 index 00000000..4960d87e --- /dev/null +++ b/include/MSGraphEndpoint.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEndpoint.h \ No newline at end of file diff --git a/include/MSGraphEndpointType.h b/include/MSGraphEndpointType.h new file mode 120000 index 00000000..2d857abb --- /dev/null +++ b/include/MSGraphEndpointType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEndpointType.h \ No newline at end of file diff --git a/include/MSGraphEnrollmentConfigurationAssignment.h b/include/MSGraphEnrollmentConfigurationAssignment.h new file mode 120000 index 00000000..8c53735a --- /dev/null +++ b/include/MSGraphEnrollmentConfigurationAssignment.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEnrollmentConfigurationAssignment.h \ No newline at end of file diff --git a/include/MSGraphEnrollmentTroubleshootingEvent.h b/include/MSGraphEnrollmentTroubleshootingEvent.h new file mode 120000 index 00000000..172326d7 --- /dev/null +++ b/include/MSGraphEnrollmentTroubleshootingEvent.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEnrollmentTroubleshootingEvent.h \ No newline at end of file diff --git a/include/MSGraphEntity.h b/include/MSGraphEntity.h new file mode 120000 index 00000000..29307e60 --- /dev/null +++ b/include/MSGraphEntity.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEntity.h \ No newline at end of file diff --git a/include/MSGraphEntityType.h b/include/MSGraphEntityType.h new file mode 120000 index 00000000..1b4cdf1c --- /dev/null +++ b/include/MSGraphEntityType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEntityType.h \ No newline at end of file diff --git a/include/MSGraphEvent.h b/include/MSGraphEvent.h new file mode 120000 index 00000000..25dfe493 --- /dev/null +++ b/include/MSGraphEvent.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEvent.h \ No newline at end of file diff --git a/include/MSGraphEventMessage.h b/include/MSGraphEventMessage.h new file mode 120000 index 00000000..33a2acf6 --- /dev/null +++ b/include/MSGraphEventMessage.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEventMessage.h \ No newline at end of file diff --git a/include/MSGraphEventMessageRequest.h b/include/MSGraphEventMessageRequest.h new file mode 120000 index 00000000..5ef52e11 --- /dev/null +++ b/include/MSGraphEventMessageRequest.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEventMessageRequest.h \ No newline at end of file diff --git a/include/MSGraphEventMessageResponse.h b/include/MSGraphEventMessageResponse.h new file mode 120000 index 00000000..d395172d --- /dev/null +++ b/include/MSGraphEventMessageResponse.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEventMessageResponse.h \ No newline at end of file diff --git a/include/MSGraphEventType.h b/include/MSGraphEventType.h new file mode 120000 index 00000000..60511d16 --- /dev/null +++ b/include/MSGraphEventType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphEventType.h \ No newline at end of file diff --git a/include/MSGraphExchangeIdFormat.h b/include/MSGraphExchangeIdFormat.h new file mode 120000 index 00000000..d8e73222 --- /dev/null +++ b/include/MSGraphExchangeIdFormat.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphExchangeIdFormat.h \ No newline at end of file diff --git a/include/MSGraphExclusionGroupAssignmentTarget.h b/include/MSGraphExclusionGroupAssignmentTarget.h new file mode 120000 index 00000000..17f1fdb7 --- /dev/null +++ b/include/MSGraphExclusionGroupAssignmentTarget.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphExclusionGroupAssignmentTarget.h \ No newline at end of file diff --git a/include/MSGraphExtension.h b/include/MSGraphExtension.h new file mode 120000 index 00000000..8f769f8d --- /dev/null +++ b/include/MSGraphExtension.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphExtension.h \ No newline at end of file diff --git a/include/MSGraphExtensionProperty.h b/include/MSGraphExtensionProperty.h new file mode 120000 index 00000000..20b39a54 --- /dev/null +++ b/include/MSGraphExtensionProperty.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphExtensionProperty.h \ No newline at end of file diff --git a/include/MSGraphExtensionSchemaProperty.h b/include/MSGraphExtensionSchemaProperty.h new file mode 120000 index 00000000..c4d93415 --- /dev/null +++ b/include/MSGraphExtensionSchemaProperty.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphExtensionSchemaProperty.h \ No newline at end of file diff --git a/include/MSGraphExternalAudienceScope.h b/include/MSGraphExternalAudienceScope.h new file mode 120000 index 00000000..c69ffeb0 --- /dev/null +++ b/include/MSGraphExternalAudienceScope.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphExternalAudienceScope.h \ No newline at end of file diff --git a/include/MSGraphExternalEmailOtpState.h b/include/MSGraphExternalEmailOtpState.h new file mode 120000 index 00000000..91135509 --- /dev/null +++ b/include/MSGraphExternalEmailOtpState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphExternalEmailOtpState.h \ No newline at end of file diff --git a/include/MSGraphExternalLink.h b/include/MSGraphExternalLink.h new file mode 120000 index 00000000..573f0923 --- /dev/null +++ b/include/MSGraphExternalLink.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphExternalLink.h \ No newline at end of file diff --git a/include/MSGraphFeatureRolloutPolicy.h b/include/MSGraphFeatureRolloutPolicy.h new file mode 120000 index 00000000..ea20d6df --- /dev/null +++ b/include/MSGraphFeatureRolloutPolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphFeatureRolloutPolicy.h \ No newline at end of file diff --git a/include/MSGraphFido2AuthenticationMethod.h b/include/MSGraphFido2AuthenticationMethod.h new file mode 120000 index 00000000..0dee2fb5 --- /dev/null +++ b/include/MSGraphFido2AuthenticationMethod.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphFido2AuthenticationMethod.h \ No newline at end of file diff --git a/include/MSGraphFido2AuthenticationMethodConfiguration.h b/include/MSGraphFido2AuthenticationMethodConfiguration.h new file mode 120000 index 00000000..2f8f2b2d --- /dev/null +++ b/include/MSGraphFido2AuthenticationMethodConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphFido2AuthenticationMethodConfiguration.h \ No newline at end of file diff --git a/include/MSGraphFido2KeyRestrictions.h b/include/MSGraphFido2KeyRestrictions.h new file mode 120000 index 00000000..debbf2c0 --- /dev/null +++ b/include/MSGraphFido2KeyRestrictions.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphFido2KeyRestrictions.h \ No newline at end of file diff --git a/include/MSGraphFido2RestrictionEnforcementType.h b/include/MSGraphFido2RestrictionEnforcementType.h new file mode 120000 index 00000000..9ebc51d9 --- /dev/null +++ b/include/MSGraphFido2RestrictionEnforcementType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphFido2RestrictionEnforcementType.h \ No newline at end of file diff --git a/include/MSGraphFieldValueSet.h b/include/MSGraphFieldValueSet.h new file mode 120000 index 00000000..58db08bf --- /dev/null +++ b/include/MSGraphFieldValueSet.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphFieldValueSet.h \ No newline at end of file diff --git a/include/MSGraphFile.h b/include/MSGraphFile.h new file mode 120000 index 00000000..f58b721e --- /dev/null +++ b/include/MSGraphFile.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphFile.h \ No newline at end of file diff --git a/include/MSGraphFileAssessmentRequest.h b/include/MSGraphFileAssessmentRequest.h new file mode 120000 index 00000000..f047f7e5 --- /dev/null +++ b/include/MSGraphFileAssessmentRequest.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphFileAssessmentRequest.h \ No newline at end of file diff --git a/include/MSGraphFileAttachment.h b/include/MSGraphFileAttachment.h new file mode 120000 index 00000000..df2a0d1e --- /dev/null +++ b/include/MSGraphFileAttachment.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphFileAttachment.h \ No newline at end of file diff --git a/include/MSGraphFileEncryptionInfo.h b/include/MSGraphFileEncryptionInfo.h new file mode 120000 index 00000000..26126de4 --- /dev/null +++ b/include/MSGraphFileEncryptionInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphFileEncryptionInfo.h \ No newline at end of file diff --git a/include/MSGraphFileHash.h b/include/MSGraphFileHash.h new file mode 120000 index 00000000..8939c5ee --- /dev/null +++ b/include/MSGraphFileHash.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphFileHash.h \ No newline at end of file diff --git a/include/MSGraphFileHashType.h b/include/MSGraphFileHashType.h new file mode 120000 index 00000000..098c39da --- /dev/null +++ b/include/MSGraphFileHashType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphFileHashType.h \ No newline at end of file diff --git a/include/MSGraphFileSecurityState.h b/include/MSGraphFileSecurityState.h new file mode 120000 index 00000000..8035453c --- /dev/null +++ b/include/MSGraphFileSecurityState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphFileSecurityState.h \ No newline at end of file diff --git a/include/MSGraphFileSystemInfo.h b/include/MSGraphFileSystemInfo.h new file mode 120000 index 00000000..32863f3a --- /dev/null +++ b/include/MSGraphFileSystemInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphFileSystemInfo.h \ No newline at end of file diff --git a/include/MSGraphFirewallCertificateRevocationListCheckMethodType.h b/include/MSGraphFirewallCertificateRevocationListCheckMethodType.h new file mode 120000 index 00000000..de172be3 --- /dev/null +++ b/include/MSGraphFirewallCertificateRevocationListCheckMethodType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphFirewallCertificateRevocationListCheckMethodType.h \ No newline at end of file diff --git a/include/MSGraphFirewallPacketQueueingMethodType.h b/include/MSGraphFirewallPacketQueueingMethodType.h new file mode 120000 index 00000000..b61b0c23 --- /dev/null +++ b/include/MSGraphFirewallPacketQueueingMethodType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphFirewallPacketQueueingMethodType.h \ No newline at end of file diff --git a/include/MSGraphFirewallPreSharedKeyEncodingMethodType.h b/include/MSGraphFirewallPreSharedKeyEncodingMethodType.h new file mode 120000 index 00000000..f9c1e81d --- /dev/null +++ b/include/MSGraphFirewallPreSharedKeyEncodingMethodType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphFirewallPreSharedKeyEncodingMethodType.h \ No newline at end of file diff --git a/include/MSGraphFolder.h b/include/MSGraphFolder.h new file mode 120000 index 00000000..1b09a449 --- /dev/null +++ b/include/MSGraphFolder.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphFolder.h \ No newline at end of file diff --git a/include/MSGraphFolderView.h b/include/MSGraphFolderView.h new file mode 120000 index 00000000..48608451 --- /dev/null +++ b/include/MSGraphFolderView.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphFolderView.h \ No newline at end of file diff --git a/include/MSGraphFollowupFlag.h b/include/MSGraphFollowupFlag.h new file mode 120000 index 00000000..085dc2ce --- /dev/null +++ b/include/MSGraphFollowupFlag.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphFollowupFlag.h \ No newline at end of file diff --git a/include/MSGraphFollowupFlagStatus.h b/include/MSGraphFollowupFlagStatus.h new file mode 120000 index 00000000..90bd4353 --- /dev/null +++ b/include/MSGraphFollowupFlagStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphFollowupFlagStatus.h \ No newline at end of file diff --git a/include/MSGraphFreeBusyError.h b/include/MSGraphFreeBusyError.h new file mode 120000 index 00000000..75199b5f --- /dev/null +++ b/include/MSGraphFreeBusyError.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphFreeBusyError.h \ No newline at end of file diff --git a/include/MSGraphFreeBusyStatus.h b/include/MSGraphFreeBusyStatus.h new file mode 120000 index 00000000..072b60b0 --- /dev/null +++ b/include/MSGraphFreeBusyStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphFreeBusyStatus.h \ No newline at end of file diff --git a/include/MSGraphGenericError.h b/include/MSGraphGenericError.h new file mode 120000 index 00000000..b721c54c --- /dev/null +++ b/include/MSGraphGenericError.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphGenericError.h \ No newline at end of file diff --git a/include/MSGraphGeoCoordinates.h b/include/MSGraphGeoCoordinates.h new file mode 120000 index 00000000..35f05a71 --- /dev/null +++ b/include/MSGraphGeoCoordinates.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphGeoCoordinates.h \ No newline at end of file diff --git a/include/MSGraphGeolocationColumn.h b/include/MSGraphGeolocationColumn.h new file mode 120000 index 00000000..3191d4fe --- /dev/null +++ b/include/MSGraphGeolocationColumn.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphGeolocationColumn.h \ No newline at end of file diff --git a/include/MSGraphGiphyRatingType.h b/include/MSGraphGiphyRatingType.h new file mode 120000 index 00000000..34d81746 --- /dev/null +++ b/include/MSGraphGiphyRatingType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphGiphyRatingType.h \ No newline at end of file diff --git a/include/MSGraphGroup.h b/include/MSGraphGroup.h new file mode 120000 index 00000000..6e899a5a --- /dev/null +++ b/include/MSGraphGroup.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphGroup.h \ No newline at end of file diff --git a/include/MSGraphGroupAssignmentTarget.h b/include/MSGraphGroupAssignmentTarget.h new file mode 120000 index 00000000..2cde1828 --- /dev/null +++ b/include/MSGraphGroupAssignmentTarget.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphGroupAssignmentTarget.h \ No newline at end of file diff --git a/include/MSGraphGroupLifecyclePolicy.h b/include/MSGraphGroupLifecyclePolicy.h new file mode 120000 index 00000000..1ff1ca0f --- /dev/null +++ b/include/MSGraphGroupLifecyclePolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphGroupLifecyclePolicy.h \ No newline at end of file diff --git a/include/MSGraphGroupSetting.h b/include/MSGraphGroupSetting.h new file mode 120000 index 00000000..e9a0fd69 --- /dev/null +++ b/include/MSGraphGroupSetting.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphGroupSetting.h \ No newline at end of file diff --git a/include/MSGraphGroupSettingTemplate.h b/include/MSGraphGroupSettingTemplate.h new file mode 120000 index 00000000..a883d7bd --- /dev/null +++ b/include/MSGraphGroupSettingTemplate.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphGroupSettingTemplate.h \ No newline at end of file diff --git a/include/MSGraphGroupType.h b/include/MSGraphGroupType.h new file mode 120000 index 00000000..a55b4127 --- /dev/null +++ b/include/MSGraphGroupType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphGroupType.h \ No newline at end of file diff --git a/include/MSGraphHashes.h b/include/MSGraphHashes.h new file mode 120000 index 00000000..86a5a26a --- /dev/null +++ b/include/MSGraphHashes.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphHashes.h \ No newline at end of file diff --git a/include/MSGraphHomeRealmDiscoveryPolicy.h b/include/MSGraphHomeRealmDiscoveryPolicy.h new file mode 120000 index 00000000..02f85a11 --- /dev/null +++ b/include/MSGraphHomeRealmDiscoveryPolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphHomeRealmDiscoveryPolicy.h \ No newline at end of file diff --git a/include/MSGraphHostSecurityState.h b/include/MSGraphHostSecurityState.h new file mode 120000 index 00000000..f0c15aea --- /dev/null +++ b/include/MSGraphHostSecurityState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphHostSecurityState.h \ No newline at end of file diff --git a/include/MSGraphIPv4CidrRange.h b/include/MSGraphIPv4CidrRange.h new file mode 120000 index 00000000..75955d65 --- /dev/null +++ b/include/MSGraphIPv4CidrRange.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIPv4CidrRange.h \ No newline at end of file diff --git a/include/MSGraphIPv4Range.h b/include/MSGraphIPv4Range.h new file mode 120000 index 00000000..eaeac00a --- /dev/null +++ b/include/MSGraphIPv4Range.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIPv4Range.h \ No newline at end of file diff --git a/include/MSGraphIPv6CidrRange.h b/include/MSGraphIPv6CidrRange.h new file mode 120000 index 00000000..07865b5c --- /dev/null +++ b/include/MSGraphIPv6CidrRange.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIPv6CidrRange.h \ No newline at end of file diff --git a/include/MSGraphIPv6Range.h b/include/MSGraphIPv6Range.h new file mode 120000 index 00000000..1f8d5818 --- /dev/null +++ b/include/MSGraphIPv6Range.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIPv6Range.h \ No newline at end of file diff --git a/include/MSGraphIdentity.h b/include/MSGraphIdentity.h new file mode 120000 index 00000000..4c7581be --- /dev/null +++ b/include/MSGraphIdentity.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIdentity.h \ No newline at end of file diff --git a/include/MSGraphIdentityContainer.h b/include/MSGraphIdentityContainer.h new file mode 120000 index 00000000..8af870d1 --- /dev/null +++ b/include/MSGraphIdentityContainer.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIdentityContainer.h \ No newline at end of file diff --git a/include/MSGraphIdentityGovernance.h b/include/MSGraphIdentityGovernance.h new file mode 120000 index 00000000..f9e519e8 --- /dev/null +++ b/include/MSGraphIdentityGovernance.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIdentityGovernance.h \ No newline at end of file diff --git a/include/MSGraphIdentityProvider.h b/include/MSGraphIdentityProvider.h new file mode 120000 index 00000000..992c6c01 --- /dev/null +++ b/include/MSGraphIdentityProvider.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIdentityProvider.h \ No newline at end of file diff --git a/include/MSGraphIdentitySecurityDefaultsEnforcementPolicy.h b/include/MSGraphIdentitySecurityDefaultsEnforcementPolicy.h new file mode 120000 index 00000000..7d497754 --- /dev/null +++ b/include/MSGraphIdentitySecurityDefaultsEnforcementPolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIdentitySecurityDefaultsEnforcementPolicy.h \ No newline at end of file diff --git a/include/MSGraphIdentitySet.h b/include/MSGraphIdentitySet.h new file mode 120000 index 00000000..c5f586d4 --- /dev/null +++ b/include/MSGraphIdentitySet.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIdentitySet.h \ No newline at end of file diff --git a/include/MSGraphImage.h b/include/MSGraphImage.h new file mode 120000 index 00000000..36a02116 --- /dev/null +++ b/include/MSGraphImage.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphImage.h \ No newline at end of file diff --git a/include/MSGraphImageInfo.h b/include/MSGraphImageInfo.h new file mode 120000 index 00000000..524c511d --- /dev/null +++ b/include/MSGraphImageInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphImageInfo.h \ No newline at end of file diff --git a/include/MSGraphImplicitGrantSettings.h b/include/MSGraphImplicitGrantSettings.h new file mode 120000 index 00000000..20eb6d99 --- /dev/null +++ b/include/MSGraphImplicitGrantSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphImplicitGrantSettings.h \ No newline at end of file diff --git a/include/MSGraphImportance.h b/include/MSGraphImportance.h new file mode 120000 index 00000000..2bc74935 --- /dev/null +++ b/include/MSGraphImportance.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphImportance.h \ No newline at end of file diff --git a/include/MSGraphIncomingContext.h b/include/MSGraphIncomingContext.h new file mode 120000 index 00000000..b814eace --- /dev/null +++ b/include/MSGraphIncomingContext.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIncomingContext.h \ No newline at end of file diff --git a/include/MSGraphIncompleteData.h b/include/MSGraphIncompleteData.h new file mode 120000 index 00000000..552b52cf --- /dev/null +++ b/include/MSGraphIncompleteData.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIncompleteData.h \ No newline at end of file diff --git a/include/MSGraphInferenceClassification.h b/include/MSGraphInferenceClassification.h new file mode 120000 index 00000000..2d82a65b --- /dev/null +++ b/include/MSGraphInferenceClassification.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphInferenceClassification.h \ No newline at end of file diff --git a/include/MSGraphInferenceClassificationOverride.h b/include/MSGraphInferenceClassificationOverride.h new file mode 120000 index 00000000..cbb83080 --- /dev/null +++ b/include/MSGraphInferenceClassificationOverride.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphInferenceClassificationOverride.h \ No newline at end of file diff --git a/include/MSGraphInferenceClassificationType.h b/include/MSGraphInferenceClassificationType.h new file mode 120000 index 00000000..a57948d8 --- /dev/null +++ b/include/MSGraphInferenceClassificationType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphInferenceClassificationType.h \ No newline at end of file diff --git a/include/MSGraphInformationProtection.h b/include/MSGraphInformationProtection.h new file mode 120000 index 00000000..3a8f1d5a --- /dev/null +++ b/include/MSGraphInformationProtection.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphInformationProtection.h \ No newline at end of file diff --git a/include/MSGraphInformationalUrl.h b/include/MSGraphInformationalUrl.h new file mode 120000 index 00000000..df36d686 --- /dev/null +++ b/include/MSGraphInformationalUrl.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphInformationalUrl.h \ No newline at end of file diff --git a/include/MSGraphInitiator.h b/include/MSGraphInitiator.h new file mode 120000 index 00000000..a24b4b18 --- /dev/null +++ b/include/MSGraphInitiator.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphInitiator.h \ No newline at end of file diff --git a/include/MSGraphInitiatorType.h b/include/MSGraphInitiatorType.h new file mode 120000 index 00000000..17c1d1ee --- /dev/null +++ b/include/MSGraphInitiatorType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphInitiatorType.h \ No newline at end of file diff --git a/include/MSGraphInsightIdentity.h b/include/MSGraphInsightIdentity.h new file mode 120000 index 00000000..c86ca99a --- /dev/null +++ b/include/MSGraphInsightIdentity.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphInsightIdentity.h \ No newline at end of file diff --git a/include/MSGraphInstallIntent.h b/include/MSGraphInstallIntent.h new file mode 120000 index 00000000..b868409c --- /dev/null +++ b/include/MSGraphInstallIntent.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphInstallIntent.h \ No newline at end of file diff --git a/include/MSGraphInstallState.h b/include/MSGraphInstallState.h new file mode 120000 index 00000000..3bb17923 --- /dev/null +++ b/include/MSGraphInstallState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphInstallState.h \ No newline at end of file diff --git a/include/MSGraphInstanceResourceAccess.h b/include/MSGraphInstanceResourceAccess.h new file mode 120000 index 00000000..8bf2be4f --- /dev/null +++ b/include/MSGraphInstanceResourceAccess.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphInstanceResourceAccess.h \ No newline at end of file diff --git a/include/MSGraphIntegerRange.h b/include/MSGraphIntegerRange.h new file mode 120000 index 00000000..90ec2f1c --- /dev/null +++ b/include/MSGraphIntegerRange.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIntegerRange.h \ No newline at end of file diff --git a/include/MSGraphInternetMessageHeader.h b/include/MSGraphInternetMessageHeader.h new file mode 120000 index 00000000..abdfb566 --- /dev/null +++ b/include/MSGraphInternetMessageHeader.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphInternetMessageHeader.h \ No newline at end of file diff --git a/include/MSGraphInternetSiteSecurityLevel.h b/include/MSGraphInternetSiteSecurityLevel.h new file mode 120000 index 00000000..9adfb287 --- /dev/null +++ b/include/MSGraphInternetSiteSecurityLevel.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphInternetSiteSecurityLevel.h \ No newline at end of file diff --git a/include/MSGraphIntuneBrand.h b/include/MSGraphIntuneBrand.h new file mode 120000 index 00000000..3cc7d030 --- /dev/null +++ b/include/MSGraphIntuneBrand.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIntuneBrand.h \ No newline at end of file diff --git a/include/MSGraphInvestigationSecurityState.h b/include/MSGraphInvestigationSecurityState.h new file mode 120000 index 00000000..441aacd1 --- /dev/null +++ b/include/MSGraphInvestigationSecurityState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphInvestigationSecurityState.h \ No newline at end of file diff --git a/include/MSGraphInvitation.h b/include/MSGraphInvitation.h new file mode 120000 index 00000000..6a31d17a --- /dev/null +++ b/include/MSGraphInvitation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphInvitation.h \ No newline at end of file diff --git a/include/MSGraphInvitationParticipantInfo.h b/include/MSGraphInvitationParticipantInfo.h new file mode 120000 index 00000000..21fd3a59 --- /dev/null +++ b/include/MSGraphInvitationParticipantInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphInvitationParticipantInfo.h \ No newline at end of file diff --git a/include/MSGraphInviteParticipantsOperation.h b/include/MSGraphInviteParticipantsOperation.h new file mode 120000 index 00000000..062a445f --- /dev/null +++ b/include/MSGraphInviteParticipantsOperation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphInviteParticipantsOperation.h \ No newline at end of file diff --git a/include/MSGraphInvitedUserMessageInfo.h b/include/MSGraphInvitedUserMessageInfo.h new file mode 120000 index 00000000..9c0e6a50 --- /dev/null +++ b/include/MSGraphInvitedUserMessageInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphInvitedUserMessageInfo.h \ No newline at end of file diff --git a/include/MSGraphIosCertificateProfile.h b/include/MSGraphIosCertificateProfile.h new file mode 120000 index 00000000..a631d487 --- /dev/null +++ b/include/MSGraphIosCertificateProfile.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosCertificateProfile.h \ No newline at end of file diff --git a/include/MSGraphIosCompliancePolicy.h b/include/MSGraphIosCompliancePolicy.h new file mode 120000 index 00000000..57f109ce --- /dev/null +++ b/include/MSGraphIosCompliancePolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosCompliancePolicy.h \ No newline at end of file diff --git a/include/MSGraphIosCustomConfiguration.h b/include/MSGraphIosCustomConfiguration.h new file mode 120000 index 00000000..c45e34bf --- /dev/null +++ b/include/MSGraphIosCustomConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosCustomConfiguration.h \ No newline at end of file diff --git a/include/MSGraphIosDeviceFeaturesConfiguration.h b/include/MSGraphIosDeviceFeaturesConfiguration.h new file mode 120000 index 00000000..e7b6bef9 --- /dev/null +++ b/include/MSGraphIosDeviceFeaturesConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosDeviceFeaturesConfiguration.h \ No newline at end of file diff --git a/include/MSGraphIosDeviceType.h b/include/MSGraphIosDeviceType.h new file mode 120000 index 00000000..b8fecbf1 --- /dev/null +++ b/include/MSGraphIosDeviceType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosDeviceType.h \ No newline at end of file diff --git a/include/MSGraphIosGeneralDeviceConfiguration.h b/include/MSGraphIosGeneralDeviceConfiguration.h new file mode 120000 index 00000000..5546ac66 --- /dev/null +++ b/include/MSGraphIosGeneralDeviceConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosGeneralDeviceConfiguration.h \ No newline at end of file diff --git a/include/MSGraphIosHomeScreenApp.h b/include/MSGraphIosHomeScreenApp.h new file mode 120000 index 00000000..f7a41f9e --- /dev/null +++ b/include/MSGraphIosHomeScreenApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosHomeScreenApp.h \ No newline at end of file diff --git a/include/MSGraphIosHomeScreenFolder.h b/include/MSGraphIosHomeScreenFolder.h new file mode 120000 index 00000000..ef3edb7e --- /dev/null +++ b/include/MSGraphIosHomeScreenFolder.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosHomeScreenFolder.h \ No newline at end of file diff --git a/include/MSGraphIosHomeScreenFolderPage.h b/include/MSGraphIosHomeScreenFolderPage.h new file mode 120000 index 00000000..506accf0 --- /dev/null +++ b/include/MSGraphIosHomeScreenFolderPage.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosHomeScreenFolderPage.h \ No newline at end of file diff --git a/include/MSGraphIosHomeScreenItem.h b/include/MSGraphIosHomeScreenItem.h new file mode 120000 index 00000000..57e08652 --- /dev/null +++ b/include/MSGraphIosHomeScreenItem.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosHomeScreenItem.h \ No newline at end of file diff --git a/include/MSGraphIosHomeScreenPage.h b/include/MSGraphIosHomeScreenPage.h new file mode 120000 index 00000000..998c47bf --- /dev/null +++ b/include/MSGraphIosHomeScreenPage.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosHomeScreenPage.h \ No newline at end of file diff --git a/include/MSGraphIosLobApp.h b/include/MSGraphIosLobApp.h new file mode 120000 index 00000000..614ab700 --- /dev/null +++ b/include/MSGraphIosLobApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosLobApp.h \ No newline at end of file diff --git a/include/MSGraphIosLobAppAssignmentSettings.h b/include/MSGraphIosLobAppAssignmentSettings.h new file mode 120000 index 00000000..afe1f27a --- /dev/null +++ b/include/MSGraphIosLobAppAssignmentSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosLobAppAssignmentSettings.h \ No newline at end of file diff --git a/include/MSGraphIosManagedAppProtection.h b/include/MSGraphIosManagedAppProtection.h new file mode 120000 index 00000000..52b6902f --- /dev/null +++ b/include/MSGraphIosManagedAppProtection.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosManagedAppProtection.h \ No newline at end of file diff --git a/include/MSGraphIosManagedAppRegistration.h b/include/MSGraphIosManagedAppRegistration.h new file mode 120000 index 00000000..ee7b8962 --- /dev/null +++ b/include/MSGraphIosManagedAppRegistration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosManagedAppRegistration.h \ No newline at end of file diff --git a/include/MSGraphIosMinimumOperatingSystem.h b/include/MSGraphIosMinimumOperatingSystem.h new file mode 120000 index 00000000..25d2845b --- /dev/null +++ b/include/MSGraphIosMinimumOperatingSystem.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosMinimumOperatingSystem.h \ No newline at end of file diff --git a/include/MSGraphIosMobileAppConfiguration.h b/include/MSGraphIosMobileAppConfiguration.h new file mode 120000 index 00000000..12ded49b --- /dev/null +++ b/include/MSGraphIosMobileAppConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosMobileAppConfiguration.h \ No newline at end of file diff --git a/include/MSGraphIosMobileAppIdentifier.h b/include/MSGraphIosMobileAppIdentifier.h new file mode 120000 index 00000000..ecd4bfe4 --- /dev/null +++ b/include/MSGraphIosMobileAppIdentifier.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosMobileAppIdentifier.h \ No newline at end of file diff --git a/include/MSGraphIosNetworkUsageRule.h b/include/MSGraphIosNetworkUsageRule.h new file mode 120000 index 00000000..fbe157ea --- /dev/null +++ b/include/MSGraphIosNetworkUsageRule.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosNetworkUsageRule.h \ No newline at end of file diff --git a/include/MSGraphIosNotificationAlertType.h b/include/MSGraphIosNotificationAlertType.h new file mode 120000 index 00000000..35c6d3ae --- /dev/null +++ b/include/MSGraphIosNotificationAlertType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosNotificationAlertType.h \ No newline at end of file diff --git a/include/MSGraphIosNotificationSettings.h b/include/MSGraphIosNotificationSettings.h new file mode 120000 index 00000000..44cef35a --- /dev/null +++ b/include/MSGraphIosNotificationSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosNotificationSettings.h \ No newline at end of file diff --git a/include/MSGraphIosStoreApp.h b/include/MSGraphIosStoreApp.h new file mode 120000 index 00000000..bfaabd5a --- /dev/null +++ b/include/MSGraphIosStoreApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosStoreApp.h \ No newline at end of file diff --git a/include/MSGraphIosStoreAppAssignmentSettings.h b/include/MSGraphIosStoreAppAssignmentSettings.h new file mode 120000 index 00000000..2f33479c --- /dev/null +++ b/include/MSGraphIosStoreAppAssignmentSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosStoreAppAssignmentSettings.h \ No newline at end of file diff --git a/include/MSGraphIosUpdateConfiguration.h b/include/MSGraphIosUpdateConfiguration.h new file mode 120000 index 00000000..5104100c --- /dev/null +++ b/include/MSGraphIosUpdateConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosUpdateConfiguration.h \ No newline at end of file diff --git a/include/MSGraphIosUpdateDeviceStatus.h b/include/MSGraphIosUpdateDeviceStatus.h new file mode 120000 index 00000000..786bcd20 --- /dev/null +++ b/include/MSGraphIosUpdateDeviceStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosUpdateDeviceStatus.h \ No newline at end of file diff --git a/include/MSGraphIosUpdatesInstallStatus.h b/include/MSGraphIosUpdatesInstallStatus.h new file mode 120000 index 00000000..4218416b --- /dev/null +++ b/include/MSGraphIosUpdatesInstallStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosUpdatesInstallStatus.h \ No newline at end of file diff --git a/include/MSGraphIosVppApp.h b/include/MSGraphIosVppApp.h new file mode 120000 index 00000000..5e30bd17 --- /dev/null +++ b/include/MSGraphIosVppApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosVppApp.h \ No newline at end of file diff --git a/include/MSGraphIosVppAppAssignmentSettings.h b/include/MSGraphIosVppAppAssignmentSettings.h new file mode 120000 index 00000000..5cc4a835 --- /dev/null +++ b/include/MSGraphIosVppAppAssignmentSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosVppAppAssignmentSettings.h \ No newline at end of file diff --git a/include/MSGraphIosVppEBook.h b/include/MSGraphIosVppEBook.h new file mode 120000 index 00000000..1a50adb7 --- /dev/null +++ b/include/MSGraphIosVppEBook.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosVppEBook.h \ No newline at end of file diff --git a/include/MSGraphIosVppEBookAssignment.h b/include/MSGraphIosVppEBookAssignment.h new file mode 120000 index 00000000..6359d7b1 --- /dev/null +++ b/include/MSGraphIosVppEBookAssignment.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIosVppEBookAssignment.h \ No newline at end of file diff --git a/include/MSGraphIpNamedLocation.h b/include/MSGraphIpNamedLocation.h new file mode 120000 index 00000000..a84c8f6c --- /dev/null +++ b/include/MSGraphIpNamedLocation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIpNamedLocation.h \ No newline at end of file diff --git a/include/MSGraphIpRange.h b/include/MSGraphIpRange.h new file mode 120000 index 00000000..dfe9f457 --- /dev/null +++ b/include/MSGraphIpRange.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphIpRange.h \ No newline at end of file diff --git a/include/MSGraphItemActionStat.h b/include/MSGraphItemActionStat.h new file mode 120000 index 00000000..b1e479af --- /dev/null +++ b/include/MSGraphItemActionStat.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphItemActionStat.h \ No newline at end of file diff --git a/include/MSGraphItemActivity.h b/include/MSGraphItemActivity.h new file mode 120000 index 00000000..9477c5e9 --- /dev/null +++ b/include/MSGraphItemActivity.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphItemActivity.h \ No newline at end of file diff --git a/include/MSGraphItemActivityStat.h b/include/MSGraphItemActivityStat.h new file mode 120000 index 00000000..dfaf5807 --- /dev/null +++ b/include/MSGraphItemActivityStat.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphItemActivityStat.h \ No newline at end of file diff --git a/include/MSGraphItemAnalytics.h b/include/MSGraphItemAnalytics.h new file mode 120000 index 00000000..ad3ac7cf --- /dev/null +++ b/include/MSGraphItemAnalytics.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphItemAnalytics.h \ No newline at end of file diff --git a/include/MSGraphItemAttachment.h b/include/MSGraphItemAttachment.h new file mode 120000 index 00000000..bc5cd8e7 --- /dev/null +++ b/include/MSGraphItemAttachment.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphItemAttachment.h \ No newline at end of file diff --git a/include/MSGraphItemBody.h b/include/MSGraphItemBody.h new file mode 120000 index 00000000..ae8e5b70 --- /dev/null +++ b/include/MSGraphItemBody.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphItemBody.h \ No newline at end of file diff --git a/include/MSGraphItemPreviewInfo.h b/include/MSGraphItemPreviewInfo.h new file mode 120000 index 00000000..4d8537ea --- /dev/null +++ b/include/MSGraphItemPreviewInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphItemPreviewInfo.h \ No newline at end of file diff --git a/include/MSGraphItemReference.h b/include/MSGraphItemReference.h new file mode 120000 index 00000000..912123fb --- /dev/null +++ b/include/MSGraphItemReference.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphItemReference.h \ No newline at end of file diff --git a/include/MSGraphKeyCredential.h b/include/MSGraphKeyCredential.h new file mode 120000 index 00000000..3d145f36 --- /dev/null +++ b/include/MSGraphKeyCredential.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphKeyCredential.h \ No newline at end of file diff --git a/include/MSGraphKeyValue.h b/include/MSGraphKeyValue.h new file mode 120000 index 00000000..55bc6ab5 --- /dev/null +++ b/include/MSGraphKeyValue.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphKeyValue.h \ No newline at end of file diff --git a/include/MSGraphKeyValuePair.h b/include/MSGraphKeyValuePair.h new file mode 120000 index 00000000..d02020e5 --- /dev/null +++ b/include/MSGraphKeyValuePair.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphKeyValuePair.h \ No newline at end of file diff --git a/include/MSGraphLicenseAssignmentState.h b/include/MSGraphLicenseAssignmentState.h new file mode 120000 index 00000000..769b2a76 --- /dev/null +++ b/include/MSGraphLicenseAssignmentState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphLicenseAssignmentState.h \ No newline at end of file diff --git a/include/MSGraphLicenseDetails.h b/include/MSGraphLicenseDetails.h new file mode 120000 index 00000000..1334a13d --- /dev/null +++ b/include/MSGraphLicenseDetails.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphLicenseDetails.h \ No newline at end of file diff --git a/include/MSGraphLicenseProcessingState.h b/include/MSGraphLicenseProcessingState.h new file mode 120000 index 00000000..973cc0b5 --- /dev/null +++ b/include/MSGraphLicenseProcessingState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphLicenseProcessingState.h \ No newline at end of file diff --git a/include/MSGraphLicenseUnitsDetail.h b/include/MSGraphLicenseUnitsDetail.h new file mode 120000 index 00000000..586c40d9 --- /dev/null +++ b/include/MSGraphLicenseUnitsDetail.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphLicenseUnitsDetail.h \ No newline at end of file diff --git a/include/MSGraphLifecycleEventType.h b/include/MSGraphLifecycleEventType.h new file mode 120000 index 00000000..ad85a77e --- /dev/null +++ b/include/MSGraphLifecycleEventType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphLifecycleEventType.h \ No newline at end of file diff --git a/include/MSGraphLinkedResource.h b/include/MSGraphLinkedResource.h new file mode 120000 index 00000000..14c2c4ff --- /dev/null +++ b/include/MSGraphLinkedResource.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphLinkedResource.h \ No newline at end of file diff --git a/include/MSGraphList.h b/include/MSGraphList.h new file mode 120000 index 00000000..5dc3f300 --- /dev/null +++ b/include/MSGraphList.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphList.h \ No newline at end of file diff --git a/include/MSGraphListInfo.h b/include/MSGraphListInfo.h new file mode 120000 index 00000000..de741292 --- /dev/null +++ b/include/MSGraphListInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphListInfo.h \ No newline at end of file diff --git a/include/MSGraphListItem.h b/include/MSGraphListItem.h new file mode 120000 index 00000000..b6b69780 --- /dev/null +++ b/include/MSGraphListItem.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphListItem.h \ No newline at end of file diff --git a/include/MSGraphListItemVersion.h b/include/MSGraphListItemVersion.h new file mode 120000 index 00000000..e05ba0af --- /dev/null +++ b/include/MSGraphListItemVersion.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphListItemVersion.h \ No newline at end of file diff --git a/include/MSGraphLobbyBypassScope.h b/include/MSGraphLobbyBypassScope.h new file mode 120000 index 00000000..49d707da --- /dev/null +++ b/include/MSGraphLobbyBypassScope.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphLobbyBypassScope.h \ No newline at end of file diff --git a/include/MSGraphLobbyBypassSettings.h b/include/MSGraphLobbyBypassSettings.h new file mode 120000 index 00000000..d8a7e06d --- /dev/null +++ b/include/MSGraphLobbyBypassSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphLobbyBypassSettings.h \ No newline at end of file diff --git a/include/MSGraphLocaleInfo.h b/include/MSGraphLocaleInfo.h new file mode 120000 index 00000000..1d976dee --- /dev/null +++ b/include/MSGraphLocaleInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphLocaleInfo.h \ No newline at end of file diff --git a/include/MSGraphLocalizedNotificationMessage.h b/include/MSGraphLocalizedNotificationMessage.h new file mode 120000 index 00000000..4e82893b --- /dev/null +++ b/include/MSGraphLocalizedNotificationMessage.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphLocalizedNotificationMessage.h \ No newline at end of file diff --git a/include/MSGraphLocateDeviceActionResult.h b/include/MSGraphLocateDeviceActionResult.h new file mode 120000 index 00000000..35e3c966 --- /dev/null +++ b/include/MSGraphLocateDeviceActionResult.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphLocateDeviceActionResult.h \ No newline at end of file diff --git a/include/MSGraphLocation.h b/include/MSGraphLocation.h new file mode 120000 index 00000000..7f984100 --- /dev/null +++ b/include/MSGraphLocation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphLocation.h \ No newline at end of file diff --git a/include/MSGraphLocationConstraint.h b/include/MSGraphLocationConstraint.h new file mode 120000 index 00000000..23e2ed85 --- /dev/null +++ b/include/MSGraphLocationConstraint.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphLocationConstraint.h \ No newline at end of file diff --git a/include/MSGraphLocationConstraintItem.h b/include/MSGraphLocationConstraintItem.h new file mode 120000 index 00000000..bfcc351c --- /dev/null +++ b/include/MSGraphLocationConstraintItem.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphLocationConstraintItem.h \ No newline at end of file diff --git a/include/MSGraphLocationType.h b/include/MSGraphLocationType.h new file mode 120000 index 00000000..1a543cf2 --- /dev/null +++ b/include/MSGraphLocationType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphLocationType.h \ No newline at end of file diff --git a/include/MSGraphLocationUniqueIdType.h b/include/MSGraphLocationUniqueIdType.h new file mode 120000 index 00000000..8b1ecbc4 --- /dev/null +++ b/include/MSGraphLocationUniqueIdType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphLocationUniqueIdType.h \ No newline at end of file diff --git a/include/MSGraphLogonType.h b/include/MSGraphLogonType.h new file mode 120000 index 00000000..5f598c40 --- /dev/null +++ b/include/MSGraphLogonType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphLogonType.h \ No newline at end of file diff --git a/include/MSGraphLookupColumn.h b/include/MSGraphLookupColumn.h new file mode 120000 index 00000000..1185c448 --- /dev/null +++ b/include/MSGraphLookupColumn.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphLookupColumn.h \ No newline at end of file diff --git a/include/MSGraphMacOSCompliancePolicy.h b/include/MSGraphMacOSCompliancePolicy.h new file mode 120000 index 00000000..ef267bbc --- /dev/null +++ b/include/MSGraphMacOSCompliancePolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMacOSCompliancePolicy.h \ No newline at end of file diff --git a/include/MSGraphMacOSCustomConfiguration.h b/include/MSGraphMacOSCustomConfiguration.h new file mode 120000 index 00000000..4afffc65 --- /dev/null +++ b/include/MSGraphMacOSCustomConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMacOSCustomConfiguration.h \ No newline at end of file diff --git a/include/MSGraphMacOSDeviceFeaturesConfiguration.h b/include/MSGraphMacOSDeviceFeaturesConfiguration.h new file mode 120000 index 00000000..62625fc6 --- /dev/null +++ b/include/MSGraphMacOSDeviceFeaturesConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMacOSDeviceFeaturesConfiguration.h \ No newline at end of file diff --git a/include/MSGraphMacOSGeneralDeviceConfiguration.h b/include/MSGraphMacOSGeneralDeviceConfiguration.h new file mode 120000 index 00000000..f80153c5 --- /dev/null +++ b/include/MSGraphMacOSGeneralDeviceConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMacOSGeneralDeviceConfiguration.h \ No newline at end of file diff --git a/include/MSGraphMacOSOfficeSuiteApp.h b/include/MSGraphMacOSOfficeSuiteApp.h new file mode 120000 index 00000000..2f80498c --- /dev/null +++ b/include/MSGraphMacOSOfficeSuiteApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMacOSOfficeSuiteApp.h \ No newline at end of file diff --git a/include/MSGraphMailAssessmentRequest.h b/include/MSGraphMailAssessmentRequest.h new file mode 120000 index 00000000..9b94e031 --- /dev/null +++ b/include/MSGraphMailAssessmentRequest.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMailAssessmentRequest.h \ No newline at end of file diff --git a/include/MSGraphMailDestinationRoutingReason.h b/include/MSGraphMailDestinationRoutingReason.h new file mode 120000 index 00000000..bb2f8619 --- /dev/null +++ b/include/MSGraphMailDestinationRoutingReason.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMailDestinationRoutingReason.h \ No newline at end of file diff --git a/include/MSGraphMailFolder.h b/include/MSGraphMailFolder.h new file mode 120000 index 00000000..7fcf888c --- /dev/null +++ b/include/MSGraphMailFolder.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMailFolder.h \ No newline at end of file diff --git a/include/MSGraphMailSearchFolder.h b/include/MSGraphMailSearchFolder.h new file mode 120000 index 00000000..6e3a9388 --- /dev/null +++ b/include/MSGraphMailSearchFolder.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMailSearchFolder.h \ No newline at end of file diff --git a/include/MSGraphMailTips.h b/include/MSGraphMailTips.h new file mode 120000 index 00000000..69b42b57 --- /dev/null +++ b/include/MSGraphMailTips.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMailTips.h \ No newline at end of file diff --git a/include/MSGraphMailTipsError.h b/include/MSGraphMailTipsError.h new file mode 120000 index 00000000..6be806c3 --- /dev/null +++ b/include/MSGraphMailTipsError.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMailTipsError.h \ No newline at end of file diff --git a/include/MSGraphMailTipsType.h b/include/MSGraphMailTipsType.h new file mode 120000 index 00000000..37a1ccc5 --- /dev/null +++ b/include/MSGraphMailTipsType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMailTipsType.h \ No newline at end of file diff --git a/include/MSGraphMailboxSettings.h b/include/MSGraphMailboxSettings.h new file mode 120000 index 00000000..f0ac22b7 --- /dev/null +++ b/include/MSGraphMailboxSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMailboxSettings.h \ No newline at end of file diff --git a/include/MSGraphMalwareState.h b/include/MSGraphMalwareState.h new file mode 120000 index 00000000..ea525b02 --- /dev/null +++ b/include/MSGraphMalwareState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMalwareState.h \ No newline at end of file diff --git a/include/MSGraphManagedAndroidLobApp.h b/include/MSGraphManagedAndroidLobApp.h new file mode 120000 index 00000000..af64c142 --- /dev/null +++ b/include/MSGraphManagedAndroidLobApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedAndroidLobApp.h \ No newline at end of file diff --git a/include/MSGraphManagedAndroidStoreApp.h b/include/MSGraphManagedAndroidStoreApp.h new file mode 120000 index 00000000..da03d2b4 --- /dev/null +++ b/include/MSGraphManagedAndroidStoreApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedAndroidStoreApp.h \ No newline at end of file diff --git a/include/MSGraphManagedApp.h b/include/MSGraphManagedApp.h new file mode 120000 index 00000000..7f015825 --- /dev/null +++ b/include/MSGraphManagedApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedApp.h \ No newline at end of file diff --git a/include/MSGraphManagedAppAvailability.h b/include/MSGraphManagedAppAvailability.h new file mode 120000 index 00000000..0da4b380 --- /dev/null +++ b/include/MSGraphManagedAppAvailability.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedAppAvailability.h \ No newline at end of file diff --git a/include/MSGraphManagedAppClipboardSharingLevel.h b/include/MSGraphManagedAppClipboardSharingLevel.h new file mode 120000 index 00000000..b294636a --- /dev/null +++ b/include/MSGraphManagedAppClipboardSharingLevel.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedAppClipboardSharingLevel.h \ No newline at end of file diff --git a/include/MSGraphManagedAppConfiguration.h b/include/MSGraphManagedAppConfiguration.h new file mode 120000 index 00000000..e4df2e0a --- /dev/null +++ b/include/MSGraphManagedAppConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedAppConfiguration.h \ No newline at end of file diff --git a/include/MSGraphManagedAppDataEncryptionType.h b/include/MSGraphManagedAppDataEncryptionType.h new file mode 120000 index 00000000..bf254b50 --- /dev/null +++ b/include/MSGraphManagedAppDataEncryptionType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedAppDataEncryptionType.h \ No newline at end of file diff --git a/include/MSGraphManagedAppDataStorageLocation.h b/include/MSGraphManagedAppDataStorageLocation.h new file mode 120000 index 00000000..e8bf0283 --- /dev/null +++ b/include/MSGraphManagedAppDataStorageLocation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedAppDataStorageLocation.h \ No newline at end of file diff --git a/include/MSGraphManagedAppDataTransferLevel.h b/include/MSGraphManagedAppDataTransferLevel.h new file mode 120000 index 00000000..d31a292e --- /dev/null +++ b/include/MSGraphManagedAppDataTransferLevel.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedAppDataTransferLevel.h \ No newline at end of file diff --git a/include/MSGraphManagedAppDiagnosticStatus.h b/include/MSGraphManagedAppDiagnosticStatus.h new file mode 120000 index 00000000..975b2ffe --- /dev/null +++ b/include/MSGraphManagedAppDiagnosticStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedAppDiagnosticStatus.h \ No newline at end of file diff --git a/include/MSGraphManagedAppFlaggedReason.h b/include/MSGraphManagedAppFlaggedReason.h new file mode 120000 index 00000000..6893df83 --- /dev/null +++ b/include/MSGraphManagedAppFlaggedReason.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedAppFlaggedReason.h \ No newline at end of file diff --git a/include/MSGraphManagedAppOperation.h b/include/MSGraphManagedAppOperation.h new file mode 120000 index 00000000..6b099c3d --- /dev/null +++ b/include/MSGraphManagedAppOperation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedAppOperation.h \ No newline at end of file diff --git a/include/MSGraphManagedAppPinCharacterSet.h b/include/MSGraphManagedAppPinCharacterSet.h new file mode 120000 index 00000000..b98516ac --- /dev/null +++ b/include/MSGraphManagedAppPinCharacterSet.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedAppPinCharacterSet.h \ No newline at end of file diff --git a/include/MSGraphManagedAppPolicy.h b/include/MSGraphManagedAppPolicy.h new file mode 120000 index 00000000..25b0e57c --- /dev/null +++ b/include/MSGraphManagedAppPolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedAppPolicy.h \ No newline at end of file diff --git a/include/MSGraphManagedAppPolicyDeploymentSummary.h b/include/MSGraphManagedAppPolicyDeploymentSummary.h new file mode 120000 index 00000000..976623c0 --- /dev/null +++ b/include/MSGraphManagedAppPolicyDeploymentSummary.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedAppPolicyDeploymentSummary.h \ No newline at end of file diff --git a/include/MSGraphManagedAppPolicyDeploymentSummaryPerApp.h b/include/MSGraphManagedAppPolicyDeploymentSummaryPerApp.h new file mode 120000 index 00000000..ea51816a --- /dev/null +++ b/include/MSGraphManagedAppPolicyDeploymentSummaryPerApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedAppPolicyDeploymentSummaryPerApp.h \ No newline at end of file diff --git a/include/MSGraphManagedAppProtection.h b/include/MSGraphManagedAppProtection.h new file mode 120000 index 00000000..40d7f81c --- /dev/null +++ b/include/MSGraphManagedAppProtection.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedAppProtection.h \ No newline at end of file diff --git a/include/MSGraphManagedAppRegistration.h b/include/MSGraphManagedAppRegistration.h new file mode 120000 index 00000000..99fb2854 --- /dev/null +++ b/include/MSGraphManagedAppRegistration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedAppRegistration.h \ No newline at end of file diff --git a/include/MSGraphManagedAppStatus.h b/include/MSGraphManagedAppStatus.h new file mode 120000 index 00000000..8cd4f695 --- /dev/null +++ b/include/MSGraphManagedAppStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedAppStatus.h \ No newline at end of file diff --git a/include/MSGraphManagedAppStatusRaw.h b/include/MSGraphManagedAppStatusRaw.h new file mode 120000 index 00000000..ffb604e8 --- /dev/null +++ b/include/MSGraphManagedAppStatusRaw.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedAppStatusRaw.h \ No newline at end of file diff --git a/include/MSGraphManagedBrowserType.h b/include/MSGraphManagedBrowserType.h new file mode 120000 index 00000000..e3054666 --- /dev/null +++ b/include/MSGraphManagedBrowserType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedBrowserType.h \ No newline at end of file diff --git a/include/MSGraphManagedDevice.h b/include/MSGraphManagedDevice.h new file mode 120000 index 00000000..af64394c --- /dev/null +++ b/include/MSGraphManagedDevice.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedDevice.h \ No newline at end of file diff --git a/include/MSGraphManagedDeviceMobileAppConfiguration.h b/include/MSGraphManagedDeviceMobileAppConfiguration.h new file mode 120000 index 00000000..a7276305 --- /dev/null +++ b/include/MSGraphManagedDeviceMobileAppConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedDeviceMobileAppConfiguration.h \ No newline at end of file diff --git a/include/MSGraphManagedDeviceMobileAppConfigurationAssignment.h b/include/MSGraphManagedDeviceMobileAppConfigurationAssignment.h new file mode 120000 index 00000000..22a28568 --- /dev/null +++ b/include/MSGraphManagedDeviceMobileAppConfigurationAssignment.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedDeviceMobileAppConfigurationAssignment.h \ No newline at end of file diff --git a/include/MSGraphManagedDeviceMobileAppConfigurationDeviceStatus.h b/include/MSGraphManagedDeviceMobileAppConfigurationDeviceStatus.h new file mode 120000 index 00000000..637aedfb --- /dev/null +++ b/include/MSGraphManagedDeviceMobileAppConfigurationDeviceStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedDeviceMobileAppConfigurationDeviceStatus.h \ No newline at end of file diff --git a/include/MSGraphManagedDeviceMobileAppConfigurationDeviceSummary.h b/include/MSGraphManagedDeviceMobileAppConfigurationDeviceSummary.h new file mode 120000 index 00000000..d6134aae --- /dev/null +++ b/include/MSGraphManagedDeviceMobileAppConfigurationDeviceSummary.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedDeviceMobileAppConfigurationDeviceSummary.h \ No newline at end of file diff --git a/include/MSGraphManagedDeviceMobileAppConfigurationUserStatus.h b/include/MSGraphManagedDeviceMobileAppConfigurationUserStatus.h new file mode 120000 index 00000000..2d9abbf4 --- /dev/null +++ b/include/MSGraphManagedDeviceMobileAppConfigurationUserStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedDeviceMobileAppConfigurationUserStatus.h \ No newline at end of file diff --git a/include/MSGraphManagedDeviceMobileAppConfigurationUserSummary.h b/include/MSGraphManagedDeviceMobileAppConfigurationUserSummary.h new file mode 120000 index 00000000..4212c018 --- /dev/null +++ b/include/MSGraphManagedDeviceMobileAppConfigurationUserSummary.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedDeviceMobileAppConfigurationUserSummary.h \ No newline at end of file diff --git a/include/MSGraphManagedDeviceOverview.h b/include/MSGraphManagedDeviceOverview.h new file mode 120000 index 00000000..fedfabf7 --- /dev/null +++ b/include/MSGraphManagedDeviceOverview.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedDeviceOverview.h \ No newline at end of file diff --git a/include/MSGraphManagedDeviceOwnerType.h b/include/MSGraphManagedDeviceOwnerType.h new file mode 120000 index 00000000..8717c6b8 --- /dev/null +++ b/include/MSGraphManagedDeviceOwnerType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedDeviceOwnerType.h \ No newline at end of file diff --git a/include/MSGraphManagedDevicePartnerReportedHealthState.h b/include/MSGraphManagedDevicePartnerReportedHealthState.h new file mode 120000 index 00000000..71392576 --- /dev/null +++ b/include/MSGraphManagedDevicePartnerReportedHealthState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedDevicePartnerReportedHealthState.h \ No newline at end of file diff --git a/include/MSGraphManagedEBook.h b/include/MSGraphManagedEBook.h new file mode 120000 index 00000000..d0b551b6 --- /dev/null +++ b/include/MSGraphManagedEBook.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedEBook.h \ No newline at end of file diff --git a/include/MSGraphManagedEBookAssignment.h b/include/MSGraphManagedEBookAssignment.h new file mode 120000 index 00000000..299fcc85 --- /dev/null +++ b/include/MSGraphManagedEBookAssignment.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedEBookAssignment.h \ No newline at end of file diff --git a/include/MSGraphManagedIOSLobApp.h b/include/MSGraphManagedIOSLobApp.h new file mode 120000 index 00000000..44480761 --- /dev/null +++ b/include/MSGraphManagedIOSLobApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedIOSLobApp.h \ No newline at end of file diff --git a/include/MSGraphManagedIOSStoreApp.h b/include/MSGraphManagedIOSStoreApp.h new file mode 120000 index 00000000..d6a1912d --- /dev/null +++ b/include/MSGraphManagedIOSStoreApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedIOSStoreApp.h \ No newline at end of file diff --git a/include/MSGraphManagedMobileApp.h b/include/MSGraphManagedMobileApp.h new file mode 120000 index 00000000..9193cc60 --- /dev/null +++ b/include/MSGraphManagedMobileApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedMobileApp.h \ No newline at end of file diff --git a/include/MSGraphManagedMobileLobApp.h b/include/MSGraphManagedMobileLobApp.h new file mode 120000 index 00000000..8c6cc3a8 --- /dev/null +++ b/include/MSGraphManagedMobileLobApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagedMobileLobApp.h \ No newline at end of file diff --git a/include/MSGraphManagementAgentType.h b/include/MSGraphManagementAgentType.h new file mode 120000 index 00000000..901b3f6b --- /dev/null +++ b/include/MSGraphManagementAgentType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphManagementAgentType.h \ No newline at end of file diff --git a/include/MSGraphMdmAppConfigKeyType.h b/include/MSGraphMdmAppConfigKeyType.h new file mode 120000 index 00000000..6ef9b811 --- /dev/null +++ b/include/MSGraphMdmAppConfigKeyType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMdmAppConfigKeyType.h \ No newline at end of file diff --git a/include/MSGraphMdmAuthority.h b/include/MSGraphMdmAuthority.h new file mode 120000 index 00000000..d5d478a3 --- /dev/null +++ b/include/MSGraphMdmAuthority.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMdmAuthority.h \ No newline at end of file diff --git a/include/MSGraphMdmWindowsInformationProtectionPolicy.h b/include/MSGraphMdmWindowsInformationProtectionPolicy.h new file mode 120000 index 00000000..aef4bcbc --- /dev/null +++ b/include/MSGraphMdmWindowsInformationProtectionPolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMdmWindowsInformationProtectionPolicy.h \ No newline at end of file diff --git a/include/MSGraphMediaConfig.h b/include/MSGraphMediaConfig.h new file mode 120000 index 00000000..f0815509 --- /dev/null +++ b/include/MSGraphMediaConfig.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMediaConfig.h \ No newline at end of file diff --git a/include/MSGraphMediaContentRatingAustralia.h b/include/MSGraphMediaContentRatingAustralia.h new file mode 120000 index 00000000..6428a627 --- /dev/null +++ b/include/MSGraphMediaContentRatingAustralia.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMediaContentRatingAustralia.h \ No newline at end of file diff --git a/include/MSGraphMediaContentRatingCanada.h b/include/MSGraphMediaContentRatingCanada.h new file mode 120000 index 00000000..37d97038 --- /dev/null +++ b/include/MSGraphMediaContentRatingCanada.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMediaContentRatingCanada.h \ No newline at end of file diff --git a/include/MSGraphMediaContentRatingFrance.h b/include/MSGraphMediaContentRatingFrance.h new file mode 120000 index 00000000..050dba77 --- /dev/null +++ b/include/MSGraphMediaContentRatingFrance.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMediaContentRatingFrance.h \ No newline at end of file diff --git a/include/MSGraphMediaContentRatingGermany.h b/include/MSGraphMediaContentRatingGermany.h new file mode 120000 index 00000000..b3419dc9 --- /dev/null +++ b/include/MSGraphMediaContentRatingGermany.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMediaContentRatingGermany.h \ No newline at end of file diff --git a/include/MSGraphMediaContentRatingIreland.h b/include/MSGraphMediaContentRatingIreland.h new file mode 120000 index 00000000..b79cb006 --- /dev/null +++ b/include/MSGraphMediaContentRatingIreland.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMediaContentRatingIreland.h \ No newline at end of file diff --git a/include/MSGraphMediaContentRatingJapan.h b/include/MSGraphMediaContentRatingJapan.h new file mode 120000 index 00000000..694f4544 --- /dev/null +++ b/include/MSGraphMediaContentRatingJapan.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMediaContentRatingJapan.h \ No newline at end of file diff --git a/include/MSGraphMediaContentRatingNewZealand.h b/include/MSGraphMediaContentRatingNewZealand.h new file mode 120000 index 00000000..631197ab --- /dev/null +++ b/include/MSGraphMediaContentRatingNewZealand.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMediaContentRatingNewZealand.h \ No newline at end of file diff --git a/include/MSGraphMediaContentRatingUnitedKingdom.h b/include/MSGraphMediaContentRatingUnitedKingdom.h new file mode 120000 index 00000000..481fbb59 --- /dev/null +++ b/include/MSGraphMediaContentRatingUnitedKingdom.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMediaContentRatingUnitedKingdom.h \ No newline at end of file diff --git a/include/MSGraphMediaContentRatingUnitedStates.h b/include/MSGraphMediaContentRatingUnitedStates.h new file mode 120000 index 00000000..e1ddf2ee --- /dev/null +++ b/include/MSGraphMediaContentRatingUnitedStates.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMediaContentRatingUnitedStates.h \ No newline at end of file diff --git a/include/MSGraphMediaDirection.h b/include/MSGraphMediaDirection.h new file mode 120000 index 00000000..584c700c --- /dev/null +++ b/include/MSGraphMediaDirection.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMediaDirection.h \ No newline at end of file diff --git a/include/MSGraphMediaInfo.h b/include/MSGraphMediaInfo.h new file mode 120000 index 00000000..8f3cbfad --- /dev/null +++ b/include/MSGraphMediaInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMediaInfo.h \ No newline at end of file diff --git a/include/MSGraphMediaPrompt.h b/include/MSGraphMediaPrompt.h new file mode 120000 index 00000000..944bd051 --- /dev/null +++ b/include/MSGraphMediaPrompt.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMediaPrompt.h \ No newline at end of file diff --git a/include/MSGraphMediaState.h b/include/MSGraphMediaState.h new file mode 120000 index 00000000..9f037494 --- /dev/null +++ b/include/MSGraphMediaState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMediaState.h \ No newline at end of file diff --git a/include/MSGraphMediaStream.h b/include/MSGraphMediaStream.h new file mode 120000 index 00000000..eb4b3880 --- /dev/null +++ b/include/MSGraphMediaStream.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMediaStream.h \ No newline at end of file diff --git a/include/MSGraphMeetingInfo.h b/include/MSGraphMeetingInfo.h new file mode 120000 index 00000000..2d43e95b --- /dev/null +++ b/include/MSGraphMeetingInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMeetingInfo.h \ No newline at end of file diff --git a/include/MSGraphMeetingMessageType.h b/include/MSGraphMeetingMessageType.h new file mode 120000 index 00000000..95166e8a --- /dev/null +++ b/include/MSGraphMeetingMessageType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMeetingMessageType.h \ No newline at end of file diff --git a/include/MSGraphMeetingParticipantInfo.h b/include/MSGraphMeetingParticipantInfo.h new file mode 120000 index 00000000..0b3e4cc5 --- /dev/null +++ b/include/MSGraphMeetingParticipantInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMeetingParticipantInfo.h \ No newline at end of file diff --git a/include/MSGraphMeetingParticipants.h b/include/MSGraphMeetingParticipants.h new file mode 120000 index 00000000..6d2f1ea7 --- /dev/null +++ b/include/MSGraphMeetingParticipants.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMeetingParticipants.h \ No newline at end of file diff --git a/include/MSGraphMeetingRequestType.h b/include/MSGraphMeetingRequestType.h new file mode 120000 index 00000000..e1994f88 --- /dev/null +++ b/include/MSGraphMeetingRequestType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMeetingRequestType.h \ No newline at end of file diff --git a/include/MSGraphMeetingTimeSuggestion.h b/include/MSGraphMeetingTimeSuggestion.h new file mode 120000 index 00000000..f324c54d --- /dev/null +++ b/include/MSGraphMeetingTimeSuggestion.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMeetingTimeSuggestion.h \ No newline at end of file diff --git a/include/MSGraphMeetingTimeSuggestionsResult.h b/include/MSGraphMeetingTimeSuggestionsResult.h new file mode 120000 index 00000000..15b10b7e --- /dev/null +++ b/include/MSGraphMeetingTimeSuggestionsResult.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMeetingTimeSuggestionsResult.h \ No newline at end of file diff --git a/include/MSGraphMessage.h b/include/MSGraphMessage.h new file mode 120000 index 00000000..f2baeb9c --- /dev/null +++ b/include/MSGraphMessage.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMessage.h \ No newline at end of file diff --git a/include/MSGraphMessageActionFlag.h b/include/MSGraphMessageActionFlag.h new file mode 120000 index 00000000..596acc06 --- /dev/null +++ b/include/MSGraphMessageActionFlag.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMessageActionFlag.h \ No newline at end of file diff --git a/include/MSGraphMessageRule.h b/include/MSGraphMessageRule.h new file mode 120000 index 00000000..b733a6ea --- /dev/null +++ b/include/MSGraphMessageRule.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMessageRule.h \ No newline at end of file diff --git a/include/MSGraphMessageRuleActions.h b/include/MSGraphMessageRuleActions.h new file mode 120000 index 00000000..530f89a7 --- /dev/null +++ b/include/MSGraphMessageRuleActions.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMessageRuleActions.h \ No newline at end of file diff --git a/include/MSGraphMessageRulePredicates.h b/include/MSGraphMessageRulePredicates.h new file mode 120000 index 00000000..818e9f20 --- /dev/null +++ b/include/MSGraphMessageRulePredicates.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMessageRulePredicates.h \ No newline at end of file diff --git a/include/MSGraphMessageSecurityState.h b/include/MSGraphMessageSecurityState.h new file mode 120000 index 00000000..a3e1084f --- /dev/null +++ b/include/MSGraphMessageSecurityState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMessageSecurityState.h \ No newline at end of file diff --git a/include/MSGraphMicrosoftAuthenticatorAuthenticationMethod.h b/include/MSGraphMicrosoftAuthenticatorAuthenticationMethod.h new file mode 120000 index 00000000..523ff785 --- /dev/null +++ b/include/MSGraphMicrosoftAuthenticatorAuthenticationMethod.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMicrosoftAuthenticatorAuthenticationMethod.h \ No newline at end of file diff --git a/include/MSGraphMicrosoftAuthenticatorAuthenticationMethodConfiguration.h b/include/MSGraphMicrosoftAuthenticatorAuthenticationMethodConfiguration.h new file mode 120000 index 00000000..622f5d60 --- /dev/null +++ b/include/MSGraphMicrosoftAuthenticatorAuthenticationMethodConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMicrosoftAuthenticatorAuthenticationMethodConfiguration.h \ No newline at end of file diff --git a/include/MSGraphMicrosoftAuthenticatorAuthenticationMethodTarget.h b/include/MSGraphMicrosoftAuthenticatorAuthenticationMethodTarget.h new file mode 120000 index 00000000..c4b55456 --- /dev/null +++ b/include/MSGraphMicrosoftAuthenticatorAuthenticationMethodTarget.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMicrosoftAuthenticatorAuthenticationMethodTarget.h \ No newline at end of file diff --git a/include/MSGraphMicrosoftAuthenticatorAuthenticationMode.h b/include/MSGraphMicrosoftAuthenticatorAuthenticationMode.h new file mode 120000 index 00000000..54547c3f --- /dev/null +++ b/include/MSGraphMicrosoftAuthenticatorAuthenticationMode.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMicrosoftAuthenticatorAuthenticationMode.h \ No newline at end of file diff --git a/include/MSGraphMicrosoftStoreForBusinessApp.h b/include/MSGraphMicrosoftStoreForBusinessApp.h new file mode 120000 index 00000000..e090e88f --- /dev/null +++ b/include/MSGraphMicrosoftStoreForBusinessApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMicrosoftStoreForBusinessApp.h \ No newline at end of file diff --git a/include/MSGraphMicrosoftStoreForBusinessAppAssignmentSettings.h b/include/MSGraphMicrosoftStoreForBusinessAppAssignmentSettings.h new file mode 120000 index 00000000..349c964a --- /dev/null +++ b/include/MSGraphMicrosoftStoreForBusinessAppAssignmentSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMicrosoftStoreForBusinessAppAssignmentSettings.h \ No newline at end of file diff --git a/include/MSGraphMicrosoftStoreForBusinessLicenseType.h b/include/MSGraphMicrosoftStoreForBusinessLicenseType.h new file mode 120000 index 00000000..f8596a3c --- /dev/null +++ b/include/MSGraphMicrosoftStoreForBusinessLicenseType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMicrosoftStoreForBusinessLicenseType.h \ No newline at end of file diff --git a/include/MSGraphMimeContent.h b/include/MSGraphMimeContent.h new file mode 120000 index 00000000..dac91665 --- /dev/null +++ b/include/MSGraphMimeContent.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMimeContent.h \ No newline at end of file diff --git a/include/MSGraphMiracastChannel.h b/include/MSGraphMiracastChannel.h new file mode 120000 index 00000000..198adb07 --- /dev/null +++ b/include/MSGraphMiracastChannel.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMiracastChannel.h \ No newline at end of file diff --git a/include/MSGraphMobileApp.h b/include/MSGraphMobileApp.h new file mode 120000 index 00000000..97edef2a --- /dev/null +++ b/include/MSGraphMobileApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMobileApp.h \ No newline at end of file diff --git a/include/MSGraphMobileAppAssignment.h b/include/MSGraphMobileAppAssignment.h new file mode 120000 index 00000000..ed44f13f --- /dev/null +++ b/include/MSGraphMobileAppAssignment.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMobileAppAssignment.h \ No newline at end of file diff --git a/include/MSGraphMobileAppAssignmentSettings.h b/include/MSGraphMobileAppAssignmentSettings.h new file mode 120000 index 00000000..dc5c180d --- /dev/null +++ b/include/MSGraphMobileAppAssignmentSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMobileAppAssignmentSettings.h \ No newline at end of file diff --git a/include/MSGraphMobileAppCategory.h b/include/MSGraphMobileAppCategory.h new file mode 120000 index 00000000..e58b0da0 --- /dev/null +++ b/include/MSGraphMobileAppCategory.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMobileAppCategory.h \ No newline at end of file diff --git a/include/MSGraphMobileAppContent.h b/include/MSGraphMobileAppContent.h new file mode 120000 index 00000000..cb09ad00 --- /dev/null +++ b/include/MSGraphMobileAppContent.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMobileAppContent.h \ No newline at end of file diff --git a/include/MSGraphMobileAppContentFile.h b/include/MSGraphMobileAppContentFile.h new file mode 120000 index 00000000..1515cf89 --- /dev/null +++ b/include/MSGraphMobileAppContentFile.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMobileAppContentFile.h \ No newline at end of file diff --git a/include/MSGraphMobileAppContentFileUploadState.h b/include/MSGraphMobileAppContentFileUploadState.h new file mode 120000 index 00000000..d7e9607f --- /dev/null +++ b/include/MSGraphMobileAppContentFileUploadState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMobileAppContentFileUploadState.h \ No newline at end of file diff --git a/include/MSGraphMobileAppIdentifier.h b/include/MSGraphMobileAppIdentifier.h new file mode 120000 index 00000000..a71202a9 --- /dev/null +++ b/include/MSGraphMobileAppIdentifier.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMobileAppIdentifier.h \ No newline at end of file diff --git a/include/MSGraphMobileAppInstallTimeSettings.h b/include/MSGraphMobileAppInstallTimeSettings.h new file mode 120000 index 00000000..73c187c1 --- /dev/null +++ b/include/MSGraphMobileAppInstallTimeSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMobileAppInstallTimeSettings.h \ No newline at end of file diff --git a/include/MSGraphMobileAppPublishingState.h b/include/MSGraphMobileAppPublishingState.h new file mode 120000 index 00000000..47512dc3 --- /dev/null +++ b/include/MSGraphMobileAppPublishingState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMobileAppPublishingState.h \ No newline at end of file diff --git a/include/MSGraphMobileLobApp.h b/include/MSGraphMobileLobApp.h new file mode 120000 index 00000000..beec8fb6 --- /dev/null +++ b/include/MSGraphMobileLobApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMobileLobApp.h \ No newline at end of file diff --git a/include/MSGraphMobileThreatDefenseConnector.h b/include/MSGraphMobileThreatDefenseConnector.h new file mode 120000 index 00000000..54a1e67a --- /dev/null +++ b/include/MSGraphMobileThreatDefenseConnector.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMobileThreatDefenseConnector.h \ No newline at end of file diff --git a/include/MSGraphMobileThreatPartnerTenantState.h b/include/MSGraphMobileThreatPartnerTenantState.h new file mode 120000 index 00000000..38bae68d --- /dev/null +++ b/include/MSGraphMobileThreatPartnerTenantState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMobileThreatPartnerTenantState.h \ No newline at end of file diff --git a/include/MSGraphModality.h b/include/MSGraphModality.h new file mode 120000 index 00000000..7c56f75f --- /dev/null +++ b/include/MSGraphModality.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphModality.h \ No newline at end of file diff --git a/include/MSGraphModifiedProperty.h b/include/MSGraphModifiedProperty.h new file mode 120000 index 00000000..a0a9a657 --- /dev/null +++ b/include/MSGraphModifiedProperty.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphModifiedProperty.h \ No newline at end of file diff --git a/include/MSGraphMultiValueLegacyExtendedProperty.h b/include/MSGraphMultiValueLegacyExtendedProperty.h new file mode 120000 index 00000000..ab7f0591 --- /dev/null +++ b/include/MSGraphMultiValueLegacyExtendedProperty.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMultiValueLegacyExtendedProperty.h \ No newline at end of file diff --git a/include/MSGraphMuteParticipantOperation.h b/include/MSGraphMuteParticipantOperation.h new file mode 120000 index 00000000..5dcc21e0 --- /dev/null +++ b/include/MSGraphMuteParticipantOperation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphMuteParticipantOperation.h \ No newline at end of file diff --git a/include/MSGraphNamedLocation.h b/include/MSGraphNamedLocation.h new file mode 120000 index 00000000..25bb165f --- /dev/null +++ b/include/MSGraphNamedLocation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphNamedLocation.h \ No newline at end of file diff --git a/include/MSGraphNetworkConnection.h b/include/MSGraphNetworkConnection.h new file mode 120000 index 00000000..db34391b --- /dev/null +++ b/include/MSGraphNetworkConnection.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphNetworkConnection.h \ No newline at end of file diff --git a/include/MSGraphNotebook.h b/include/MSGraphNotebook.h new file mode 120000 index 00000000..ac603bdd --- /dev/null +++ b/include/MSGraphNotebook.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphNotebook.h \ No newline at end of file diff --git a/include/MSGraphNotebookLinks.h b/include/MSGraphNotebookLinks.h new file mode 120000 index 00000000..e3b4bfbd --- /dev/null +++ b/include/MSGraphNotebookLinks.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphNotebookLinks.h \ No newline at end of file diff --git a/include/MSGraphNotificationMessageTemplate.h b/include/MSGraphNotificationMessageTemplate.h new file mode 120000 index 00000000..8ea9bb62 --- /dev/null +++ b/include/MSGraphNotificationMessageTemplate.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphNotificationMessageTemplate.h \ No newline at end of file diff --git a/include/MSGraphNotificationTemplateBrandingOptions.h b/include/MSGraphNotificationTemplateBrandingOptions.h new file mode 120000 index 00000000..83a60375 --- /dev/null +++ b/include/MSGraphNotificationTemplateBrandingOptions.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphNotificationTemplateBrandingOptions.h \ No newline at end of file diff --git a/include/MSGraphNumberColumn.h b/include/MSGraphNumberColumn.h new file mode 120000 index 00000000..ab344350 --- /dev/null +++ b/include/MSGraphNumberColumn.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphNumberColumn.h \ No newline at end of file diff --git a/include/MSGraphOAuth2PermissionGrant.h b/include/MSGraphOAuth2PermissionGrant.h new file mode 120000 index 00000000..2818f4ba --- /dev/null +++ b/include/MSGraphOAuth2PermissionGrant.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOAuth2PermissionGrant.h \ No newline at end of file diff --git a/include/MSGraphObjectIdentity.h b/include/MSGraphObjectIdentity.h new file mode 120000 index 00000000..ce6667ee --- /dev/null +++ b/include/MSGraphObjectIdentity.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphObjectIdentity.h \ No newline at end of file diff --git a/include/MSGraphOfferShiftRequest.h b/include/MSGraphOfferShiftRequest.h new file mode 120000 index 00000000..7dd6d795 --- /dev/null +++ b/include/MSGraphOfferShiftRequest.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOfferShiftRequest.h \ No newline at end of file diff --git a/include/MSGraphOfficeGraphInsights.h b/include/MSGraphOfficeGraphInsights.h new file mode 120000 index 00000000..26f82920 --- /dev/null +++ b/include/MSGraphOfficeGraphInsights.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOfficeGraphInsights.h \ No newline at end of file diff --git a/include/MSGraphOmaSetting.h b/include/MSGraphOmaSetting.h new file mode 120000 index 00000000..725c9b2d --- /dev/null +++ b/include/MSGraphOmaSetting.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOmaSetting.h \ No newline at end of file diff --git a/include/MSGraphOmaSettingBase64.h b/include/MSGraphOmaSettingBase64.h new file mode 120000 index 00000000..6ea12bdf --- /dev/null +++ b/include/MSGraphOmaSettingBase64.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOmaSettingBase64.h \ No newline at end of file diff --git a/include/MSGraphOmaSettingBoolean.h b/include/MSGraphOmaSettingBoolean.h new file mode 120000 index 00000000..c7d4e6f0 --- /dev/null +++ b/include/MSGraphOmaSettingBoolean.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOmaSettingBoolean.h \ No newline at end of file diff --git a/include/MSGraphOmaSettingDateTime.h b/include/MSGraphOmaSettingDateTime.h new file mode 120000 index 00000000..acc43b50 --- /dev/null +++ b/include/MSGraphOmaSettingDateTime.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOmaSettingDateTime.h \ No newline at end of file diff --git a/include/MSGraphOmaSettingFloatingPoint.h b/include/MSGraphOmaSettingFloatingPoint.h new file mode 120000 index 00000000..b35a9187 --- /dev/null +++ b/include/MSGraphOmaSettingFloatingPoint.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOmaSettingFloatingPoint.h \ No newline at end of file diff --git a/include/MSGraphOmaSettingInteger.h b/include/MSGraphOmaSettingInteger.h new file mode 120000 index 00000000..ac683be3 --- /dev/null +++ b/include/MSGraphOmaSettingInteger.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOmaSettingInteger.h \ No newline at end of file diff --git a/include/MSGraphOmaSettingString.h b/include/MSGraphOmaSettingString.h new file mode 120000 index 00000000..2c130a97 --- /dev/null +++ b/include/MSGraphOmaSettingString.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOmaSettingString.h \ No newline at end of file diff --git a/include/MSGraphOmaSettingStringXml.h b/include/MSGraphOmaSettingStringXml.h new file mode 120000 index 00000000..05afb92a --- /dev/null +++ b/include/MSGraphOmaSettingStringXml.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOmaSettingStringXml.h \ No newline at end of file diff --git a/include/MSGraphOnPremisesConditionalAccessSettings.h b/include/MSGraphOnPremisesConditionalAccessSettings.h new file mode 120000 index 00000000..5760e079 --- /dev/null +++ b/include/MSGraphOnPremisesConditionalAccessSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnPremisesConditionalAccessSettings.h \ No newline at end of file diff --git a/include/MSGraphOnPremisesExtensionAttributes.h b/include/MSGraphOnPremisesExtensionAttributes.h new file mode 120000 index 00000000..3f388618 --- /dev/null +++ b/include/MSGraphOnPremisesExtensionAttributes.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnPremisesExtensionAttributes.h \ No newline at end of file diff --git a/include/MSGraphOnPremisesProvisioningError.h b/include/MSGraphOnPremisesProvisioningError.h new file mode 120000 index 00000000..0609ab11 --- /dev/null +++ b/include/MSGraphOnPremisesProvisioningError.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnPremisesProvisioningError.h \ No newline at end of file diff --git a/include/MSGraphOnenote.h b/include/MSGraphOnenote.h new file mode 120000 index 00000000..e37d5359 --- /dev/null +++ b/include/MSGraphOnenote.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnenote.h \ No newline at end of file diff --git a/include/MSGraphOnenoteEntityBaseModel.h b/include/MSGraphOnenoteEntityBaseModel.h new file mode 120000 index 00000000..68f583cd --- /dev/null +++ b/include/MSGraphOnenoteEntityBaseModel.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnenoteEntityBaseModel.h \ No newline at end of file diff --git a/include/MSGraphOnenoteEntityHierarchyModel.h b/include/MSGraphOnenoteEntityHierarchyModel.h new file mode 120000 index 00000000..550889ac --- /dev/null +++ b/include/MSGraphOnenoteEntityHierarchyModel.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnenoteEntityHierarchyModel.h \ No newline at end of file diff --git a/include/MSGraphOnenoteEntitySchemaObjectModel.h b/include/MSGraphOnenoteEntitySchemaObjectModel.h new file mode 120000 index 00000000..975ef9f2 --- /dev/null +++ b/include/MSGraphOnenoteEntitySchemaObjectModel.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnenoteEntitySchemaObjectModel.h \ No newline at end of file diff --git a/include/MSGraphOnenoteOperation.h b/include/MSGraphOnenoteOperation.h new file mode 120000 index 00000000..e592abc0 --- /dev/null +++ b/include/MSGraphOnenoteOperation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnenoteOperation.h \ No newline at end of file diff --git a/include/MSGraphOnenoteOperationError.h b/include/MSGraphOnenoteOperationError.h new file mode 120000 index 00000000..6b852fbc --- /dev/null +++ b/include/MSGraphOnenoteOperationError.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnenoteOperationError.h \ No newline at end of file diff --git a/include/MSGraphOnenotePage.h b/include/MSGraphOnenotePage.h new file mode 120000 index 00000000..addcea0f --- /dev/null +++ b/include/MSGraphOnenotePage.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnenotePage.h \ No newline at end of file diff --git a/include/MSGraphOnenotePagePreview.h b/include/MSGraphOnenotePagePreview.h new file mode 120000 index 00000000..0ba76fe3 --- /dev/null +++ b/include/MSGraphOnenotePagePreview.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnenotePagePreview.h \ No newline at end of file diff --git a/include/MSGraphOnenotePagePreviewLinks.h b/include/MSGraphOnenotePagePreviewLinks.h new file mode 120000 index 00000000..eabf3074 --- /dev/null +++ b/include/MSGraphOnenotePagePreviewLinks.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnenotePagePreviewLinks.h \ No newline at end of file diff --git a/include/MSGraphOnenotePatchActionType.h b/include/MSGraphOnenotePatchActionType.h new file mode 120000 index 00000000..fe9d0b78 --- /dev/null +++ b/include/MSGraphOnenotePatchActionType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnenotePatchActionType.h \ No newline at end of file diff --git a/include/MSGraphOnenotePatchContentCommand.h b/include/MSGraphOnenotePatchContentCommand.h new file mode 120000 index 00000000..cad2628a --- /dev/null +++ b/include/MSGraphOnenotePatchContentCommand.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnenotePatchContentCommand.h \ No newline at end of file diff --git a/include/MSGraphOnenotePatchInsertPosition.h b/include/MSGraphOnenotePatchInsertPosition.h new file mode 120000 index 00000000..8c513f28 --- /dev/null +++ b/include/MSGraphOnenotePatchInsertPosition.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnenotePatchInsertPosition.h \ No newline at end of file diff --git a/include/MSGraphOnenoteResource.h b/include/MSGraphOnenoteResource.h new file mode 120000 index 00000000..8d39d239 --- /dev/null +++ b/include/MSGraphOnenoteResource.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnenoteResource.h \ No newline at end of file diff --git a/include/MSGraphOnenoteSection.h b/include/MSGraphOnenoteSection.h new file mode 120000 index 00000000..e72077f4 --- /dev/null +++ b/include/MSGraphOnenoteSection.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnenoteSection.h \ No newline at end of file diff --git a/include/MSGraphOnenoteSourceService.h b/include/MSGraphOnenoteSourceService.h new file mode 120000 index 00000000..a79cbce1 --- /dev/null +++ b/include/MSGraphOnenoteSourceService.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnenoteSourceService.h \ No newline at end of file diff --git a/include/MSGraphOnenoteUserRole.h b/include/MSGraphOnenoteUserRole.h new file mode 120000 index 00000000..0e4bce83 --- /dev/null +++ b/include/MSGraphOnenoteUserRole.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnenoteUserRole.h \ No newline at end of file diff --git a/include/MSGraphOnlineMeeting.h b/include/MSGraphOnlineMeeting.h new file mode 120000 index 00000000..096ff904 --- /dev/null +++ b/include/MSGraphOnlineMeeting.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnlineMeeting.h \ No newline at end of file diff --git a/include/MSGraphOnlineMeetingInfo.h b/include/MSGraphOnlineMeetingInfo.h new file mode 120000 index 00000000..eedc2486 --- /dev/null +++ b/include/MSGraphOnlineMeetingInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnlineMeetingInfo.h \ No newline at end of file diff --git a/include/MSGraphOnlineMeetingPresenters.h b/include/MSGraphOnlineMeetingPresenters.h new file mode 120000 index 00000000..1ac28ff4 --- /dev/null +++ b/include/MSGraphOnlineMeetingPresenters.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnlineMeetingPresenters.h \ No newline at end of file diff --git a/include/MSGraphOnlineMeetingProviderType.h b/include/MSGraphOnlineMeetingProviderType.h new file mode 120000 index 00000000..fd807dde --- /dev/null +++ b/include/MSGraphOnlineMeetingProviderType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnlineMeetingProviderType.h \ No newline at end of file diff --git a/include/MSGraphOnlineMeetingRole.h b/include/MSGraphOnlineMeetingRole.h new file mode 120000 index 00000000..576f7efd --- /dev/null +++ b/include/MSGraphOnlineMeetingRole.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOnlineMeetingRole.h \ No newline at end of file diff --git a/include/MSGraphOpenShift.h b/include/MSGraphOpenShift.h new file mode 120000 index 00000000..d244cd0a --- /dev/null +++ b/include/MSGraphOpenShift.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOpenShift.h \ No newline at end of file diff --git a/include/MSGraphOpenShiftChangeRequest.h b/include/MSGraphOpenShiftChangeRequest.h new file mode 120000 index 00000000..a09eac99 --- /dev/null +++ b/include/MSGraphOpenShiftChangeRequest.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOpenShiftChangeRequest.h \ No newline at end of file diff --git a/include/MSGraphOpenShiftItem.h b/include/MSGraphOpenShiftItem.h new file mode 120000 index 00000000..3ac7be51 --- /dev/null +++ b/include/MSGraphOpenShiftItem.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOpenShiftItem.h \ No newline at end of file diff --git a/include/MSGraphOpenTypeExtension.h b/include/MSGraphOpenTypeExtension.h new file mode 120000 index 00000000..27a6c947 --- /dev/null +++ b/include/MSGraphOpenTypeExtension.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOpenTypeExtension.h \ No newline at end of file diff --git a/include/MSGraphOperation.h b/include/MSGraphOperation.h new file mode 120000 index 00000000..67032c76 --- /dev/null +++ b/include/MSGraphOperation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOperation.h \ No newline at end of file diff --git a/include/MSGraphOperationError.h b/include/MSGraphOperationError.h new file mode 120000 index 00000000..c7560743 --- /dev/null +++ b/include/MSGraphOperationError.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOperationError.h \ No newline at end of file diff --git a/include/MSGraphOperationResult.h b/include/MSGraphOperationResult.h new file mode 120000 index 00000000..6486bc24 --- /dev/null +++ b/include/MSGraphOperationResult.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOperationResult.h \ No newline at end of file diff --git a/include/MSGraphOperationStatus.h b/include/MSGraphOperationStatus.h new file mode 120000 index 00000000..aa247fc7 --- /dev/null +++ b/include/MSGraphOperationStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOperationStatus.h \ No newline at end of file diff --git a/include/MSGraphOptionalClaim.h b/include/MSGraphOptionalClaim.h new file mode 120000 index 00000000..03f93d9b --- /dev/null +++ b/include/MSGraphOptionalClaim.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOptionalClaim.h \ No newline at end of file diff --git a/include/MSGraphOptionalClaims.h b/include/MSGraphOptionalClaims.h new file mode 120000 index 00000000..674db015 --- /dev/null +++ b/include/MSGraphOptionalClaims.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOptionalClaims.h \ No newline at end of file diff --git a/include/MSGraphOrgContact.h b/include/MSGraphOrgContact.h new file mode 120000 index 00000000..761bb528 --- /dev/null +++ b/include/MSGraphOrgContact.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOrgContact.h \ No newline at end of file diff --git a/include/MSGraphOrganization.h b/include/MSGraphOrganization.h new file mode 120000 index 00000000..b9f31bf1 --- /dev/null +++ b/include/MSGraphOrganization.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOrganization.h \ No newline at end of file diff --git a/include/MSGraphOrganizationalBranding.h b/include/MSGraphOrganizationalBranding.h new file mode 120000 index 00000000..24c0b189 --- /dev/null +++ b/include/MSGraphOrganizationalBranding.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOrganizationalBranding.h \ No newline at end of file diff --git a/include/MSGraphOrganizationalBrandingLocalization.h b/include/MSGraphOrganizationalBrandingLocalization.h new file mode 120000 index 00000000..1dfc737d --- /dev/null +++ b/include/MSGraphOrganizationalBrandingLocalization.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOrganizationalBrandingLocalization.h \ No newline at end of file diff --git a/include/MSGraphOrganizationalBrandingProperties.h b/include/MSGraphOrganizationalBrandingProperties.h new file mode 120000 index 00000000..ef2b1edd --- /dev/null +++ b/include/MSGraphOrganizationalBrandingProperties.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOrganizationalBrandingProperties.h \ No newline at end of file diff --git a/include/MSGraphOrganizerMeetingInfo.h b/include/MSGraphOrganizerMeetingInfo.h new file mode 120000 index 00000000..6a182d14 --- /dev/null +++ b/include/MSGraphOrganizerMeetingInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOrganizerMeetingInfo.h \ No newline at end of file diff --git a/include/MSGraphOutgoingCallOptions.h b/include/MSGraphOutgoingCallOptions.h new file mode 120000 index 00000000..9d149982 --- /dev/null +++ b/include/MSGraphOutgoingCallOptions.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOutgoingCallOptions.h \ No newline at end of file diff --git a/include/MSGraphOutlookCategory.h b/include/MSGraphOutlookCategory.h new file mode 120000 index 00000000..2e233b36 --- /dev/null +++ b/include/MSGraphOutlookCategory.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOutlookCategory.h \ No newline at end of file diff --git a/include/MSGraphOutlookGeoCoordinates.h b/include/MSGraphOutlookGeoCoordinates.h new file mode 120000 index 00000000..b7abee06 --- /dev/null +++ b/include/MSGraphOutlookGeoCoordinates.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOutlookGeoCoordinates.h \ No newline at end of file diff --git a/include/MSGraphOutlookItem.h b/include/MSGraphOutlookItem.h new file mode 120000 index 00000000..929557e7 --- /dev/null +++ b/include/MSGraphOutlookItem.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOutlookItem.h \ No newline at end of file diff --git a/include/MSGraphOutlookUser.h b/include/MSGraphOutlookUser.h new file mode 120000 index 00000000..c6e0f100 --- /dev/null +++ b/include/MSGraphOutlookUser.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphOutlookUser.h \ No newline at end of file diff --git a/include/MSGraphPackage.h b/include/MSGraphPackage.h new file mode 120000 index 00000000..05cd091f --- /dev/null +++ b/include/MSGraphPackage.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPackage.h \ No newline at end of file diff --git a/include/MSGraphPageLinks.h b/include/MSGraphPageLinks.h new file mode 120000 index 00000000..08831b96 --- /dev/null +++ b/include/MSGraphPageLinks.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPageLinks.h \ No newline at end of file diff --git a/include/MSGraphParentalControlSettings.h b/include/MSGraphParentalControlSettings.h new file mode 120000 index 00000000..489bd40c --- /dev/null +++ b/include/MSGraphParentalControlSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphParentalControlSettings.h \ No newline at end of file diff --git a/include/MSGraphParticipant.h b/include/MSGraphParticipant.h new file mode 120000 index 00000000..26c7f49a --- /dev/null +++ b/include/MSGraphParticipant.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphParticipant.h \ No newline at end of file diff --git a/include/MSGraphParticipantInfo.h b/include/MSGraphParticipantInfo.h new file mode 120000 index 00000000..8fc55223 --- /dev/null +++ b/include/MSGraphParticipantInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphParticipantInfo.h \ No newline at end of file diff --git a/include/MSGraphPasswordCredential.h b/include/MSGraphPasswordCredential.h new file mode 120000 index 00000000..21d1f7fe --- /dev/null +++ b/include/MSGraphPasswordCredential.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPasswordCredential.h \ No newline at end of file diff --git a/include/MSGraphPasswordProfile.h b/include/MSGraphPasswordProfile.h new file mode 120000 index 00000000..c956d8f0 --- /dev/null +++ b/include/MSGraphPasswordProfile.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPasswordProfile.h \ No newline at end of file diff --git a/include/MSGraphPatternedRecurrence.h b/include/MSGraphPatternedRecurrence.h new file mode 120000 index 00000000..a6bc83b4 --- /dev/null +++ b/include/MSGraphPatternedRecurrence.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPatternedRecurrence.h \ No newline at end of file diff --git a/include/MSGraphPendingContentUpdate.h b/include/MSGraphPendingContentUpdate.h new file mode 120000 index 00000000..ede4f0e7 --- /dev/null +++ b/include/MSGraphPendingContentUpdate.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPendingContentUpdate.h \ No newline at end of file diff --git a/include/MSGraphPendingOperations.h b/include/MSGraphPendingOperations.h new file mode 120000 index 00000000..9551cc5f --- /dev/null +++ b/include/MSGraphPendingOperations.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPendingOperations.h \ No newline at end of file diff --git a/include/MSGraphPermission.h b/include/MSGraphPermission.h new file mode 120000 index 00000000..3ef4ced0 --- /dev/null +++ b/include/MSGraphPermission.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPermission.h \ No newline at end of file diff --git a/include/MSGraphPermissionClassificationType.h b/include/MSGraphPermissionClassificationType.h new file mode 120000 index 00000000..5590c780 --- /dev/null +++ b/include/MSGraphPermissionClassificationType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPermissionClassificationType.h \ No newline at end of file diff --git a/include/MSGraphPermissionGrantConditionSet.h b/include/MSGraphPermissionGrantConditionSet.h new file mode 120000 index 00000000..cdda300f --- /dev/null +++ b/include/MSGraphPermissionGrantConditionSet.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPermissionGrantConditionSet.h \ No newline at end of file diff --git a/include/MSGraphPermissionGrantPolicy.h b/include/MSGraphPermissionGrantPolicy.h new file mode 120000 index 00000000..e9831024 --- /dev/null +++ b/include/MSGraphPermissionGrantPolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPermissionGrantPolicy.h \ No newline at end of file diff --git a/include/MSGraphPermissionScope.h b/include/MSGraphPermissionScope.h new file mode 120000 index 00000000..b8da9abc --- /dev/null +++ b/include/MSGraphPermissionScope.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPermissionScope.h \ No newline at end of file diff --git a/include/MSGraphPermissionType.h b/include/MSGraphPermissionType.h new file mode 120000 index 00000000..c4e94c64 --- /dev/null +++ b/include/MSGraphPermissionType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPermissionType.h \ No newline at end of file diff --git a/include/MSGraphPersistentBrowserSessionControl.h b/include/MSGraphPersistentBrowserSessionControl.h new file mode 120000 index 00000000..0990bafd --- /dev/null +++ b/include/MSGraphPersistentBrowserSessionControl.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPersistentBrowserSessionControl.h \ No newline at end of file diff --git a/include/MSGraphPersistentBrowserSessionMode.h b/include/MSGraphPersistentBrowserSessionMode.h new file mode 120000 index 00000000..c4bd8cde --- /dev/null +++ b/include/MSGraphPersistentBrowserSessionMode.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPersistentBrowserSessionMode.h \ No newline at end of file diff --git a/include/MSGraphPerson.h b/include/MSGraphPerson.h new file mode 120000 index 00000000..bdb6a45d --- /dev/null +++ b/include/MSGraphPerson.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPerson.h \ No newline at end of file diff --git a/include/MSGraphPersonOrGroupColumn.h b/include/MSGraphPersonOrGroupColumn.h new file mode 120000 index 00000000..10d7a647 --- /dev/null +++ b/include/MSGraphPersonOrGroupColumn.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPersonOrGroupColumn.h \ No newline at end of file diff --git a/include/MSGraphPersonType.h b/include/MSGraphPersonType.h new file mode 120000 index 00000000..d930a25a --- /dev/null +++ b/include/MSGraphPersonType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPersonType.h \ No newline at end of file diff --git a/include/MSGraphPhone.h b/include/MSGraphPhone.h new file mode 120000 index 00000000..35bba9a8 --- /dev/null +++ b/include/MSGraphPhone.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPhone.h \ No newline at end of file diff --git a/include/MSGraphPhoneType.h b/include/MSGraphPhoneType.h new file mode 120000 index 00000000..d8c3c635 --- /dev/null +++ b/include/MSGraphPhoneType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPhoneType.h \ No newline at end of file diff --git a/include/MSGraphPhoto.h b/include/MSGraphPhoto.h new file mode 120000 index 00000000..7a67d80d --- /dev/null +++ b/include/MSGraphPhoto.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPhoto.h \ No newline at end of file diff --git a/include/MSGraphPhysicalAddress.h b/include/MSGraphPhysicalAddress.h new file mode 120000 index 00000000..4bb09343 --- /dev/null +++ b/include/MSGraphPhysicalAddress.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPhysicalAddress.h \ No newline at end of file diff --git a/include/MSGraphPhysicalAddressType.h b/include/MSGraphPhysicalAddressType.h new file mode 120000 index 00000000..9c199ce3 --- /dev/null +++ b/include/MSGraphPhysicalAddressType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPhysicalAddressType.h \ No newline at end of file diff --git a/include/MSGraphPhysicalOfficeAddress.h b/include/MSGraphPhysicalOfficeAddress.h new file mode 120000 index 00000000..259d3168 --- /dev/null +++ b/include/MSGraphPhysicalOfficeAddress.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPhysicalOfficeAddress.h \ No newline at end of file diff --git a/include/MSGraphPlace.h b/include/MSGraphPlace.h new file mode 120000 index 00000000..cc297bdf --- /dev/null +++ b/include/MSGraphPlace.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlace.h \ No newline at end of file diff --git a/include/MSGraphPlanner.h b/include/MSGraphPlanner.h new file mode 120000 index 00000000..c5e32b99 --- /dev/null +++ b/include/MSGraphPlanner.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlanner.h \ No newline at end of file diff --git a/include/MSGraphPlannerAppliedCategories.h b/include/MSGraphPlannerAppliedCategories.h new file mode 120000 index 00000000..b37bb190 --- /dev/null +++ b/include/MSGraphPlannerAppliedCategories.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlannerAppliedCategories.h \ No newline at end of file diff --git a/include/MSGraphPlannerAssignedToTaskBoardTaskFormat.h b/include/MSGraphPlannerAssignedToTaskBoardTaskFormat.h new file mode 120000 index 00000000..93b79dd8 --- /dev/null +++ b/include/MSGraphPlannerAssignedToTaskBoardTaskFormat.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlannerAssignedToTaskBoardTaskFormat.h \ No newline at end of file diff --git a/include/MSGraphPlannerAssignment.h b/include/MSGraphPlannerAssignment.h new file mode 120000 index 00000000..d0cc5562 --- /dev/null +++ b/include/MSGraphPlannerAssignment.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlannerAssignment.h \ No newline at end of file diff --git a/include/MSGraphPlannerAssignments.h b/include/MSGraphPlannerAssignments.h new file mode 120000 index 00000000..6e91453b --- /dev/null +++ b/include/MSGraphPlannerAssignments.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlannerAssignments.h \ No newline at end of file diff --git a/include/MSGraphPlannerBucket.h b/include/MSGraphPlannerBucket.h new file mode 120000 index 00000000..e094f5fb --- /dev/null +++ b/include/MSGraphPlannerBucket.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlannerBucket.h \ No newline at end of file diff --git a/include/MSGraphPlannerBucketTaskBoardTaskFormat.h b/include/MSGraphPlannerBucketTaskBoardTaskFormat.h new file mode 120000 index 00000000..7a1eebed --- /dev/null +++ b/include/MSGraphPlannerBucketTaskBoardTaskFormat.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlannerBucketTaskBoardTaskFormat.h \ No newline at end of file diff --git a/include/MSGraphPlannerCategoryDescriptions.h b/include/MSGraphPlannerCategoryDescriptions.h new file mode 120000 index 00000000..f3aadb10 --- /dev/null +++ b/include/MSGraphPlannerCategoryDescriptions.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlannerCategoryDescriptions.h \ No newline at end of file diff --git a/include/MSGraphPlannerChecklistItem.h b/include/MSGraphPlannerChecklistItem.h new file mode 120000 index 00000000..def6c10e --- /dev/null +++ b/include/MSGraphPlannerChecklistItem.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlannerChecklistItem.h \ No newline at end of file diff --git a/include/MSGraphPlannerChecklistItems.h b/include/MSGraphPlannerChecklistItems.h new file mode 120000 index 00000000..4a4214f8 --- /dev/null +++ b/include/MSGraphPlannerChecklistItems.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlannerChecklistItems.h \ No newline at end of file diff --git a/include/MSGraphPlannerExternalReference.h b/include/MSGraphPlannerExternalReference.h new file mode 120000 index 00000000..c20c2c20 --- /dev/null +++ b/include/MSGraphPlannerExternalReference.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlannerExternalReference.h \ No newline at end of file diff --git a/include/MSGraphPlannerExternalReferences.h b/include/MSGraphPlannerExternalReferences.h new file mode 120000 index 00000000..0769b6f2 --- /dev/null +++ b/include/MSGraphPlannerExternalReferences.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlannerExternalReferences.h \ No newline at end of file diff --git a/include/MSGraphPlannerGroup.h b/include/MSGraphPlannerGroup.h new file mode 120000 index 00000000..09917bb4 --- /dev/null +++ b/include/MSGraphPlannerGroup.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlannerGroup.h \ No newline at end of file diff --git a/include/MSGraphPlannerOrderHintsByAssignee.h b/include/MSGraphPlannerOrderHintsByAssignee.h new file mode 120000 index 00000000..0b369910 --- /dev/null +++ b/include/MSGraphPlannerOrderHintsByAssignee.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlannerOrderHintsByAssignee.h \ No newline at end of file diff --git a/include/MSGraphPlannerPlan.h b/include/MSGraphPlannerPlan.h new file mode 120000 index 00000000..35c1331b --- /dev/null +++ b/include/MSGraphPlannerPlan.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlannerPlan.h \ No newline at end of file diff --git a/include/MSGraphPlannerPlanDetails.h b/include/MSGraphPlannerPlanDetails.h new file mode 120000 index 00000000..e899f39a --- /dev/null +++ b/include/MSGraphPlannerPlanDetails.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlannerPlanDetails.h \ No newline at end of file diff --git a/include/MSGraphPlannerPreviewType.h b/include/MSGraphPlannerPreviewType.h new file mode 120000 index 00000000..bbaf5773 --- /dev/null +++ b/include/MSGraphPlannerPreviewType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlannerPreviewType.h \ No newline at end of file diff --git a/include/MSGraphPlannerProgressTaskBoardTaskFormat.h b/include/MSGraphPlannerProgressTaskBoardTaskFormat.h new file mode 120000 index 00000000..2e795bc7 --- /dev/null +++ b/include/MSGraphPlannerProgressTaskBoardTaskFormat.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlannerProgressTaskBoardTaskFormat.h \ No newline at end of file diff --git a/include/MSGraphPlannerTask.h b/include/MSGraphPlannerTask.h new file mode 120000 index 00000000..28e45108 --- /dev/null +++ b/include/MSGraphPlannerTask.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlannerTask.h \ No newline at end of file diff --git a/include/MSGraphPlannerTaskDetails.h b/include/MSGraphPlannerTaskDetails.h new file mode 120000 index 00000000..42b1cfeb --- /dev/null +++ b/include/MSGraphPlannerTaskDetails.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlannerTaskDetails.h \ No newline at end of file diff --git a/include/MSGraphPlannerUser.h b/include/MSGraphPlannerUser.h new file mode 120000 index 00000000..c0b29f6e --- /dev/null +++ b/include/MSGraphPlannerUser.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlannerUser.h \ No newline at end of file diff --git a/include/MSGraphPlannerUserIds.h b/include/MSGraphPlannerUserIds.h new file mode 120000 index 00000000..74915ac0 --- /dev/null +++ b/include/MSGraphPlannerUserIds.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlannerUserIds.h \ No newline at end of file diff --git a/include/MSGraphPlayPromptOperation.h b/include/MSGraphPlayPromptOperation.h new file mode 120000 index 00000000..60f2f8dd --- /dev/null +++ b/include/MSGraphPlayPromptOperation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPlayPromptOperation.h \ No newline at end of file diff --git a/include/MSGraphPolicyBase.h b/include/MSGraphPolicyBase.h new file mode 120000 index 00000000..10060257 --- /dev/null +++ b/include/MSGraphPolicyBase.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPolicyBase.h \ No newline at end of file diff --git a/include/MSGraphPolicyPlatformType.h b/include/MSGraphPolicyPlatformType.h new file mode 120000 index 00000000..e96b421f --- /dev/null +++ b/include/MSGraphPolicyPlatformType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPolicyPlatformType.h \ No newline at end of file diff --git a/include/MSGraphPolicyRoot.h b/include/MSGraphPolicyRoot.h new file mode 120000 index 00000000..7a374d1b --- /dev/null +++ b/include/MSGraphPolicyRoot.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPolicyRoot.h \ No newline at end of file diff --git a/include/MSGraphPost.h b/include/MSGraphPost.h new file mode 120000 index 00000000..f183c879 --- /dev/null +++ b/include/MSGraphPost.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPost.h \ No newline at end of file diff --git a/include/MSGraphPreAuthorizedApplication.h b/include/MSGraphPreAuthorizedApplication.h new file mode 120000 index 00000000..6567f2ee --- /dev/null +++ b/include/MSGraphPreAuthorizedApplication.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPreAuthorizedApplication.h \ No newline at end of file diff --git a/include/MSGraphPrereleaseFeatures.h b/include/MSGraphPrereleaseFeatures.h new file mode 120000 index 00000000..20d33dad --- /dev/null +++ b/include/MSGraphPrereleaseFeatures.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrereleaseFeatures.h \ No newline at end of file diff --git a/include/MSGraphPresence.h b/include/MSGraphPresence.h new file mode 120000 index 00000000..87a85885 --- /dev/null +++ b/include/MSGraphPresence.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPresence.h \ No newline at end of file diff --git a/include/MSGraphPrint.h b/include/MSGraphPrint.h new file mode 120000 index 00000000..4b18cdc3 --- /dev/null +++ b/include/MSGraphPrint.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrint.h \ No newline at end of file diff --git a/include/MSGraphPrintCertificateSigningRequest.h b/include/MSGraphPrintCertificateSigningRequest.h new file mode 120000 index 00000000..a8fcdb6b --- /dev/null +++ b/include/MSGraphPrintCertificateSigningRequest.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintCertificateSigningRequest.h \ No newline at end of file diff --git a/include/MSGraphPrintColorMode.h b/include/MSGraphPrintColorMode.h new file mode 120000 index 00000000..08fc4df2 --- /dev/null +++ b/include/MSGraphPrintColorMode.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintColorMode.h \ No newline at end of file diff --git a/include/MSGraphPrintConnector.h b/include/MSGraphPrintConnector.h new file mode 120000 index 00000000..3aabd233 --- /dev/null +++ b/include/MSGraphPrintConnector.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintConnector.h \ No newline at end of file diff --git a/include/MSGraphPrintDocument.h b/include/MSGraphPrintDocument.h new file mode 120000 index 00000000..1b280497 --- /dev/null +++ b/include/MSGraphPrintDocument.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintDocument.h \ No newline at end of file diff --git a/include/MSGraphPrintDocumentUploadProperties.h b/include/MSGraphPrintDocumentUploadProperties.h new file mode 120000 index 00000000..5a73595d --- /dev/null +++ b/include/MSGraphPrintDocumentUploadProperties.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintDocumentUploadProperties.h \ No newline at end of file diff --git a/include/MSGraphPrintDuplexMode.h b/include/MSGraphPrintDuplexMode.h new file mode 120000 index 00000000..bbc551d7 --- /dev/null +++ b/include/MSGraphPrintDuplexMode.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintDuplexMode.h \ No newline at end of file diff --git a/include/MSGraphPrintEvent.h b/include/MSGraphPrintEvent.h new file mode 120000 index 00000000..2225ba9c --- /dev/null +++ b/include/MSGraphPrintEvent.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintEvent.h \ No newline at end of file diff --git a/include/MSGraphPrintFinishing.h b/include/MSGraphPrintFinishing.h new file mode 120000 index 00000000..76ec228a --- /dev/null +++ b/include/MSGraphPrintFinishing.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintFinishing.h \ No newline at end of file diff --git a/include/MSGraphPrintJob.h b/include/MSGraphPrintJob.h new file mode 120000 index 00000000..467990f0 --- /dev/null +++ b/include/MSGraphPrintJob.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintJob.h \ No newline at end of file diff --git a/include/MSGraphPrintJobConfiguration.h b/include/MSGraphPrintJobConfiguration.h new file mode 120000 index 00000000..87a95b73 --- /dev/null +++ b/include/MSGraphPrintJobConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintJobConfiguration.h \ No newline at end of file diff --git a/include/MSGraphPrintJobProcessingState.h b/include/MSGraphPrintJobProcessingState.h new file mode 120000 index 00000000..c92adc0d --- /dev/null +++ b/include/MSGraphPrintJobProcessingState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintJobProcessingState.h \ No newline at end of file diff --git a/include/MSGraphPrintJobStateDetail.h b/include/MSGraphPrintJobStateDetail.h new file mode 120000 index 00000000..a383a372 --- /dev/null +++ b/include/MSGraphPrintJobStateDetail.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintJobStateDetail.h \ No newline at end of file diff --git a/include/MSGraphPrintJobStatus.h b/include/MSGraphPrintJobStatus.h new file mode 120000 index 00000000..51eb3c7c --- /dev/null +++ b/include/MSGraphPrintJobStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintJobStatus.h \ No newline at end of file diff --git a/include/MSGraphPrintMargin.h b/include/MSGraphPrintMargin.h new file mode 120000 index 00000000..00837c37 --- /dev/null +++ b/include/MSGraphPrintMargin.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintMargin.h \ No newline at end of file diff --git a/include/MSGraphPrintMultipageLayout.h b/include/MSGraphPrintMultipageLayout.h new file mode 120000 index 00000000..dca17f5c --- /dev/null +++ b/include/MSGraphPrintMultipageLayout.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintMultipageLayout.h \ No newline at end of file diff --git a/include/MSGraphPrintOperation.h b/include/MSGraphPrintOperation.h new file mode 120000 index 00000000..b5592913 --- /dev/null +++ b/include/MSGraphPrintOperation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintOperation.h \ No newline at end of file diff --git a/include/MSGraphPrintOperationProcessingState.h b/include/MSGraphPrintOperationProcessingState.h new file mode 120000 index 00000000..4e2c02cb --- /dev/null +++ b/include/MSGraphPrintOperationProcessingState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintOperationProcessingState.h \ No newline at end of file diff --git a/include/MSGraphPrintOperationStatus.h b/include/MSGraphPrintOperationStatus.h new file mode 120000 index 00000000..cabbbfe2 --- /dev/null +++ b/include/MSGraphPrintOperationStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintOperationStatus.h \ No newline at end of file diff --git a/include/MSGraphPrintOrientation.h b/include/MSGraphPrintOrientation.h new file mode 120000 index 00000000..ecf927a7 --- /dev/null +++ b/include/MSGraphPrintOrientation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintOrientation.h \ No newline at end of file diff --git a/include/MSGraphPrintQuality.h b/include/MSGraphPrintQuality.h new file mode 120000 index 00000000..70661768 --- /dev/null +++ b/include/MSGraphPrintQuality.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintQuality.h \ No newline at end of file diff --git a/include/MSGraphPrintScaling.h b/include/MSGraphPrintScaling.h new file mode 120000 index 00000000..5b4c7c4e --- /dev/null +++ b/include/MSGraphPrintScaling.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintScaling.h \ No newline at end of file diff --git a/include/MSGraphPrintService.h b/include/MSGraphPrintService.h new file mode 120000 index 00000000..bf437f10 --- /dev/null +++ b/include/MSGraphPrintService.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintService.h \ No newline at end of file diff --git a/include/MSGraphPrintServiceEndpoint.h b/include/MSGraphPrintServiceEndpoint.h new file mode 120000 index 00000000..8a928f3f --- /dev/null +++ b/include/MSGraphPrintServiceEndpoint.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintServiceEndpoint.h \ No newline at end of file diff --git a/include/MSGraphPrintSettings.h b/include/MSGraphPrintSettings.h new file mode 120000 index 00000000..2b163175 --- /dev/null +++ b/include/MSGraphPrintSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintSettings.h \ No newline at end of file diff --git a/include/MSGraphPrintTask.h b/include/MSGraphPrintTask.h new file mode 120000 index 00000000..65d6c40a --- /dev/null +++ b/include/MSGraphPrintTask.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintTask.h \ No newline at end of file diff --git a/include/MSGraphPrintTaskDefinition.h b/include/MSGraphPrintTaskDefinition.h new file mode 120000 index 00000000..412391ce --- /dev/null +++ b/include/MSGraphPrintTaskDefinition.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintTaskDefinition.h \ No newline at end of file diff --git a/include/MSGraphPrintTaskProcessingState.h b/include/MSGraphPrintTaskProcessingState.h new file mode 120000 index 00000000..99029336 --- /dev/null +++ b/include/MSGraphPrintTaskProcessingState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintTaskProcessingState.h \ No newline at end of file diff --git a/include/MSGraphPrintTaskStatus.h b/include/MSGraphPrintTaskStatus.h new file mode 120000 index 00000000..02f72fc8 --- /dev/null +++ b/include/MSGraphPrintTaskStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintTaskStatus.h \ No newline at end of file diff --git a/include/MSGraphPrintTaskTrigger.h b/include/MSGraphPrintTaskTrigger.h new file mode 120000 index 00000000..43919e1c --- /dev/null +++ b/include/MSGraphPrintTaskTrigger.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintTaskTrigger.h \ No newline at end of file diff --git a/include/MSGraphPrintUsage.h b/include/MSGraphPrintUsage.h new file mode 120000 index 00000000..65fbb73e --- /dev/null +++ b/include/MSGraphPrintUsage.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintUsage.h \ No newline at end of file diff --git a/include/MSGraphPrintUsageByPrinter.h b/include/MSGraphPrintUsageByPrinter.h new file mode 120000 index 00000000..e76a2779 --- /dev/null +++ b/include/MSGraphPrintUsageByPrinter.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintUsageByPrinter.h \ No newline at end of file diff --git a/include/MSGraphPrintUsageByUser.h b/include/MSGraphPrintUsageByUser.h new file mode 120000 index 00000000..9519c097 --- /dev/null +++ b/include/MSGraphPrintUsageByUser.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrintUsageByUser.h \ No newline at end of file diff --git a/include/MSGraphPrinter.h b/include/MSGraphPrinter.h new file mode 120000 index 00000000..d21df0eb --- /dev/null +++ b/include/MSGraphPrinter.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrinter.h \ No newline at end of file diff --git a/include/MSGraphPrinterBase.h b/include/MSGraphPrinterBase.h new file mode 120000 index 00000000..e8015a69 --- /dev/null +++ b/include/MSGraphPrinterBase.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrinterBase.h \ No newline at end of file diff --git a/include/MSGraphPrinterCapabilities.h b/include/MSGraphPrinterCapabilities.h new file mode 120000 index 00000000..7c0164a9 --- /dev/null +++ b/include/MSGraphPrinterCapabilities.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrinterCapabilities.h \ No newline at end of file diff --git a/include/MSGraphPrinterCreateOperation.h b/include/MSGraphPrinterCreateOperation.h new file mode 120000 index 00000000..092f6018 --- /dev/null +++ b/include/MSGraphPrinterCreateOperation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrinterCreateOperation.h \ No newline at end of file diff --git a/include/MSGraphPrinterDefaults.h b/include/MSGraphPrinterDefaults.h new file mode 120000 index 00000000..38903726 --- /dev/null +++ b/include/MSGraphPrinterDefaults.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrinterDefaults.h \ No newline at end of file diff --git a/include/MSGraphPrinterFeedOrientation.h b/include/MSGraphPrinterFeedOrientation.h new file mode 120000 index 00000000..6439c459 --- /dev/null +++ b/include/MSGraphPrinterFeedOrientation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrinterFeedOrientation.h \ No newline at end of file diff --git a/include/MSGraphPrinterLocation.h b/include/MSGraphPrinterLocation.h new file mode 120000 index 00000000..74452650 --- /dev/null +++ b/include/MSGraphPrinterLocation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrinterLocation.h \ No newline at end of file diff --git a/include/MSGraphPrinterProcessingState.h b/include/MSGraphPrinterProcessingState.h new file mode 120000 index 00000000..8aa8f0e5 --- /dev/null +++ b/include/MSGraphPrinterProcessingState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrinterProcessingState.h \ No newline at end of file diff --git a/include/MSGraphPrinterProcessingStateDetail.h b/include/MSGraphPrinterProcessingStateDetail.h new file mode 120000 index 00000000..5e86c27b --- /dev/null +++ b/include/MSGraphPrinterProcessingStateDetail.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrinterProcessingStateDetail.h \ No newline at end of file diff --git a/include/MSGraphPrinterShare.h b/include/MSGraphPrinterShare.h new file mode 120000 index 00000000..98d298c1 --- /dev/null +++ b/include/MSGraphPrinterShare.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrinterShare.h \ No newline at end of file diff --git a/include/MSGraphPrinterStatus.h b/include/MSGraphPrinterStatus.h new file mode 120000 index 00000000..44057c50 --- /dev/null +++ b/include/MSGraphPrinterStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrinterStatus.h \ No newline at end of file diff --git a/include/MSGraphPrivacyProfile.h b/include/MSGraphPrivacyProfile.h new file mode 120000 index 00000000..477c261e --- /dev/null +++ b/include/MSGraphPrivacyProfile.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrivacyProfile.h \ No newline at end of file diff --git a/include/MSGraphProcess.h b/include/MSGraphProcess.h new file mode 120000 index 00000000..a70711dc --- /dev/null +++ b/include/MSGraphProcess.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphProcess.h \ No newline at end of file diff --git a/include/MSGraphProcessIntegrityLevel.h b/include/MSGraphProcessIntegrityLevel.h new file mode 120000 index 00000000..6cc3e1d7 --- /dev/null +++ b/include/MSGraphProcessIntegrityLevel.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphProcessIntegrityLevel.h \ No newline at end of file diff --git a/include/MSGraphProfilePhoto.h b/include/MSGraphProfilePhoto.h new file mode 120000 index 00000000..64b8180a --- /dev/null +++ b/include/MSGraphProfilePhoto.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphProfilePhoto.h \ No newline at end of file diff --git a/include/MSGraphPrompt.h b/include/MSGraphPrompt.h new file mode 120000 index 00000000..4e7154d7 --- /dev/null +++ b/include/MSGraphPrompt.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPrompt.h \ No newline at end of file diff --git a/include/MSGraphProvisionedIdentity.h b/include/MSGraphProvisionedIdentity.h new file mode 120000 index 00000000..948be5c5 --- /dev/null +++ b/include/MSGraphProvisionedIdentity.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphProvisionedIdentity.h \ No newline at end of file diff --git a/include/MSGraphProvisionedPlan.h b/include/MSGraphProvisionedPlan.h new file mode 120000 index 00000000..2d164239 --- /dev/null +++ b/include/MSGraphProvisionedPlan.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphProvisionedPlan.h \ No newline at end of file diff --git a/include/MSGraphProvisioningAction.h b/include/MSGraphProvisioningAction.h new file mode 120000 index 00000000..5b47a6b8 --- /dev/null +++ b/include/MSGraphProvisioningAction.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphProvisioningAction.h \ No newline at end of file diff --git a/include/MSGraphProvisioningErrorInfo.h b/include/MSGraphProvisioningErrorInfo.h new file mode 120000 index 00000000..fc6495f4 --- /dev/null +++ b/include/MSGraphProvisioningErrorInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphProvisioningErrorInfo.h \ No newline at end of file diff --git a/include/MSGraphProvisioningObjectSummary.h b/include/MSGraphProvisioningObjectSummary.h new file mode 120000 index 00000000..93ceb20f --- /dev/null +++ b/include/MSGraphProvisioningObjectSummary.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphProvisioningObjectSummary.h \ No newline at end of file diff --git a/include/MSGraphProvisioningResult.h b/include/MSGraphProvisioningResult.h new file mode 120000 index 00000000..c1266a8c --- /dev/null +++ b/include/MSGraphProvisioningResult.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphProvisioningResult.h \ No newline at end of file diff --git a/include/MSGraphProvisioningServicePrincipal.h b/include/MSGraphProvisioningServicePrincipal.h new file mode 120000 index 00000000..d1e873b0 --- /dev/null +++ b/include/MSGraphProvisioningServicePrincipal.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphProvisioningServicePrincipal.h \ No newline at end of file diff --git a/include/MSGraphProvisioningStatusErrorCategory.h b/include/MSGraphProvisioningStatusErrorCategory.h new file mode 120000 index 00000000..ea38034c --- /dev/null +++ b/include/MSGraphProvisioningStatusErrorCategory.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphProvisioningStatusErrorCategory.h \ No newline at end of file diff --git a/include/MSGraphProvisioningStatusInfo.h b/include/MSGraphProvisioningStatusInfo.h new file mode 120000 index 00000000..fd3eae8f --- /dev/null +++ b/include/MSGraphProvisioningStatusInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphProvisioningStatusInfo.h \ No newline at end of file diff --git a/include/MSGraphProvisioningStep.h b/include/MSGraphProvisioningStep.h new file mode 120000 index 00000000..40ddb61f --- /dev/null +++ b/include/MSGraphProvisioningStep.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphProvisioningStep.h \ No newline at end of file diff --git a/include/MSGraphProvisioningStepType.h b/include/MSGraphProvisioningStepType.h new file mode 120000 index 00000000..a82b172b --- /dev/null +++ b/include/MSGraphProvisioningStepType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphProvisioningStepType.h \ No newline at end of file diff --git a/include/MSGraphProvisioningSystem.h b/include/MSGraphProvisioningSystem.h new file mode 120000 index 00000000..7881f0f8 --- /dev/null +++ b/include/MSGraphProvisioningSystem.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphProvisioningSystem.h \ No newline at end of file diff --git a/include/MSGraphProxiedDomain.h b/include/MSGraphProxiedDomain.h new file mode 120000 index 00000000..0f2274e8 --- /dev/null +++ b/include/MSGraphProxiedDomain.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphProxiedDomain.h \ No newline at end of file diff --git a/include/MSGraphPublicClientApplication.h b/include/MSGraphPublicClientApplication.h new file mode 120000 index 00000000..11f40504 --- /dev/null +++ b/include/MSGraphPublicClientApplication.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPublicClientApplication.h \ No newline at end of file diff --git a/include/MSGraphPublicError.h b/include/MSGraphPublicError.h new file mode 120000 index 00000000..70bf0128 --- /dev/null +++ b/include/MSGraphPublicError.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPublicError.h \ No newline at end of file diff --git a/include/MSGraphPublicErrorDetail.h b/include/MSGraphPublicErrorDetail.h new file mode 120000 index 00000000..bfab833a --- /dev/null +++ b/include/MSGraphPublicErrorDetail.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPublicErrorDetail.h \ No newline at end of file diff --git a/include/MSGraphPublicInnerError.h b/include/MSGraphPublicInnerError.h new file mode 120000 index 00000000..316a117c --- /dev/null +++ b/include/MSGraphPublicInnerError.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPublicInnerError.h \ No newline at end of file diff --git a/include/MSGraphPublicationFacet.h b/include/MSGraphPublicationFacet.h new file mode 120000 index 00000000..c31a30b8 --- /dev/null +++ b/include/MSGraphPublicationFacet.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphPublicationFacet.h \ No newline at end of file diff --git a/include/MSGraphQuota.h b/include/MSGraphQuota.h new file mode 120000 index 00000000..55e8684e --- /dev/null +++ b/include/MSGraphQuota.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphQuota.h \ No newline at end of file diff --git a/include/MSGraphRatingAppsType.h b/include/MSGraphRatingAppsType.h new file mode 120000 index 00000000..7aea7166 --- /dev/null +++ b/include/MSGraphRatingAppsType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRatingAppsType.h \ No newline at end of file diff --git a/include/MSGraphRatingAustraliaMoviesType.h b/include/MSGraphRatingAustraliaMoviesType.h new file mode 120000 index 00000000..cfd8ac24 --- /dev/null +++ b/include/MSGraphRatingAustraliaMoviesType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRatingAustraliaMoviesType.h \ No newline at end of file diff --git a/include/MSGraphRatingAustraliaTelevisionType.h b/include/MSGraphRatingAustraliaTelevisionType.h new file mode 120000 index 00000000..1b7da080 --- /dev/null +++ b/include/MSGraphRatingAustraliaTelevisionType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRatingAustraliaTelevisionType.h \ No newline at end of file diff --git a/include/MSGraphRatingCanadaMoviesType.h b/include/MSGraphRatingCanadaMoviesType.h new file mode 120000 index 00000000..66ef393e --- /dev/null +++ b/include/MSGraphRatingCanadaMoviesType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRatingCanadaMoviesType.h \ No newline at end of file diff --git a/include/MSGraphRatingCanadaTelevisionType.h b/include/MSGraphRatingCanadaTelevisionType.h new file mode 120000 index 00000000..d74313af --- /dev/null +++ b/include/MSGraphRatingCanadaTelevisionType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRatingCanadaTelevisionType.h \ No newline at end of file diff --git a/include/MSGraphRatingFranceMoviesType.h b/include/MSGraphRatingFranceMoviesType.h new file mode 120000 index 00000000..2b48675a --- /dev/null +++ b/include/MSGraphRatingFranceMoviesType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRatingFranceMoviesType.h \ No newline at end of file diff --git a/include/MSGraphRatingFranceTelevisionType.h b/include/MSGraphRatingFranceTelevisionType.h new file mode 120000 index 00000000..33a185de --- /dev/null +++ b/include/MSGraphRatingFranceTelevisionType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRatingFranceTelevisionType.h \ No newline at end of file diff --git a/include/MSGraphRatingGermanyMoviesType.h b/include/MSGraphRatingGermanyMoviesType.h new file mode 120000 index 00000000..2cf525e2 --- /dev/null +++ b/include/MSGraphRatingGermanyMoviesType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRatingGermanyMoviesType.h \ No newline at end of file diff --git a/include/MSGraphRatingGermanyTelevisionType.h b/include/MSGraphRatingGermanyTelevisionType.h new file mode 120000 index 00000000..d096d868 --- /dev/null +++ b/include/MSGraphRatingGermanyTelevisionType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRatingGermanyTelevisionType.h \ No newline at end of file diff --git a/include/MSGraphRatingIrelandMoviesType.h b/include/MSGraphRatingIrelandMoviesType.h new file mode 120000 index 00000000..67099106 --- /dev/null +++ b/include/MSGraphRatingIrelandMoviesType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRatingIrelandMoviesType.h \ No newline at end of file diff --git a/include/MSGraphRatingIrelandTelevisionType.h b/include/MSGraphRatingIrelandTelevisionType.h new file mode 120000 index 00000000..9c4ecc6e --- /dev/null +++ b/include/MSGraphRatingIrelandTelevisionType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRatingIrelandTelevisionType.h \ No newline at end of file diff --git a/include/MSGraphRatingJapanMoviesType.h b/include/MSGraphRatingJapanMoviesType.h new file mode 120000 index 00000000..ccefd668 --- /dev/null +++ b/include/MSGraphRatingJapanMoviesType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRatingJapanMoviesType.h \ No newline at end of file diff --git a/include/MSGraphRatingJapanTelevisionType.h b/include/MSGraphRatingJapanTelevisionType.h new file mode 120000 index 00000000..dc3fdc1a --- /dev/null +++ b/include/MSGraphRatingJapanTelevisionType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRatingJapanTelevisionType.h \ No newline at end of file diff --git a/include/MSGraphRatingNewZealandMoviesType.h b/include/MSGraphRatingNewZealandMoviesType.h new file mode 120000 index 00000000..af37c6be --- /dev/null +++ b/include/MSGraphRatingNewZealandMoviesType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRatingNewZealandMoviesType.h \ No newline at end of file diff --git a/include/MSGraphRatingNewZealandTelevisionType.h b/include/MSGraphRatingNewZealandTelevisionType.h new file mode 120000 index 00000000..b056523a --- /dev/null +++ b/include/MSGraphRatingNewZealandTelevisionType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRatingNewZealandTelevisionType.h \ No newline at end of file diff --git a/include/MSGraphRatingUnitedKingdomMoviesType.h b/include/MSGraphRatingUnitedKingdomMoviesType.h new file mode 120000 index 00000000..d1bdda66 --- /dev/null +++ b/include/MSGraphRatingUnitedKingdomMoviesType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRatingUnitedKingdomMoviesType.h \ No newline at end of file diff --git a/include/MSGraphRatingUnitedKingdomTelevisionType.h b/include/MSGraphRatingUnitedKingdomTelevisionType.h new file mode 120000 index 00000000..f07ba3bc --- /dev/null +++ b/include/MSGraphRatingUnitedKingdomTelevisionType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRatingUnitedKingdomTelevisionType.h \ No newline at end of file diff --git a/include/MSGraphRatingUnitedStatesMoviesType.h b/include/MSGraphRatingUnitedStatesMoviesType.h new file mode 120000 index 00000000..83fab4ff --- /dev/null +++ b/include/MSGraphRatingUnitedStatesMoviesType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRatingUnitedStatesMoviesType.h \ No newline at end of file diff --git a/include/MSGraphRatingUnitedStatesTelevisionType.h b/include/MSGraphRatingUnitedStatesTelevisionType.h new file mode 120000 index 00000000..eaa8883e --- /dev/null +++ b/include/MSGraphRatingUnitedStatesTelevisionType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRatingUnitedStatesTelevisionType.h \ No newline at end of file diff --git a/include/MSGraphRbacApplication.h b/include/MSGraphRbacApplication.h new file mode 120000 index 00000000..30444a74 --- /dev/null +++ b/include/MSGraphRbacApplication.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRbacApplication.h \ No newline at end of file diff --git a/include/MSGraphRecentNotebook.h b/include/MSGraphRecentNotebook.h new file mode 120000 index 00000000..741b073d --- /dev/null +++ b/include/MSGraphRecentNotebook.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRecentNotebook.h \ No newline at end of file diff --git a/include/MSGraphRecentNotebookLinks.h b/include/MSGraphRecentNotebookLinks.h new file mode 120000 index 00000000..823817a9 --- /dev/null +++ b/include/MSGraphRecentNotebookLinks.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRecentNotebookLinks.h \ No newline at end of file diff --git a/include/MSGraphRecipient.h b/include/MSGraphRecipient.h new file mode 120000 index 00000000..96e48863 --- /dev/null +++ b/include/MSGraphRecipient.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRecipient.h \ No newline at end of file diff --git a/include/MSGraphRecipientScopeType.h b/include/MSGraphRecipientScopeType.h new file mode 120000 index 00000000..e6f10b90 --- /dev/null +++ b/include/MSGraphRecipientScopeType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRecipientScopeType.h \ No newline at end of file diff --git a/include/MSGraphRecordOperation.h b/include/MSGraphRecordOperation.h new file mode 120000 index 00000000..af38a546 --- /dev/null +++ b/include/MSGraphRecordOperation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRecordOperation.h \ No newline at end of file diff --git a/include/MSGraphRecordingInfo.h b/include/MSGraphRecordingInfo.h new file mode 120000 index 00000000..ce4b18e3 --- /dev/null +++ b/include/MSGraphRecordingInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRecordingInfo.h \ No newline at end of file diff --git a/include/MSGraphRecordingStatus.h b/include/MSGraphRecordingStatus.h new file mode 120000 index 00000000..1f1d9d29 --- /dev/null +++ b/include/MSGraphRecordingStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRecordingStatus.h \ No newline at end of file diff --git a/include/MSGraphRecurrencePattern.h b/include/MSGraphRecurrencePattern.h new file mode 120000 index 00000000..0b99de91 --- /dev/null +++ b/include/MSGraphRecurrencePattern.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRecurrencePattern.h \ No newline at end of file diff --git a/include/MSGraphRecurrencePatternType.h b/include/MSGraphRecurrencePatternType.h new file mode 120000 index 00000000..b1d930e9 --- /dev/null +++ b/include/MSGraphRecurrencePatternType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRecurrencePatternType.h \ No newline at end of file diff --git a/include/MSGraphRecurrenceRange.h b/include/MSGraphRecurrenceRange.h new file mode 120000 index 00000000..4929b08e --- /dev/null +++ b/include/MSGraphRecurrenceRange.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRecurrenceRange.h \ No newline at end of file diff --git a/include/MSGraphRecurrenceRangeType.h b/include/MSGraphRecurrenceRangeType.h new file mode 120000 index 00000000..21b9d7d0 --- /dev/null +++ b/include/MSGraphRecurrenceRangeType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRecurrenceRangeType.h \ No newline at end of file diff --git a/include/MSGraphReferenceAttachment.h b/include/MSGraphReferenceAttachment.h new file mode 120000 index 00000000..f04c9cbd --- /dev/null +++ b/include/MSGraphReferenceAttachment.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphReferenceAttachment.h \ No newline at end of file diff --git a/include/MSGraphRegistryHive.h b/include/MSGraphRegistryHive.h new file mode 120000 index 00000000..7598a425 --- /dev/null +++ b/include/MSGraphRegistryHive.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRegistryHive.h \ No newline at end of file diff --git a/include/MSGraphRegistryKeyState.h b/include/MSGraphRegistryKeyState.h new file mode 120000 index 00000000..778c167d --- /dev/null +++ b/include/MSGraphRegistryKeyState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRegistryKeyState.h \ No newline at end of file diff --git a/include/MSGraphRegistryOperation.h b/include/MSGraphRegistryOperation.h new file mode 120000 index 00000000..2bdab7bc --- /dev/null +++ b/include/MSGraphRegistryOperation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRegistryOperation.h \ No newline at end of file diff --git a/include/MSGraphRegistryValueType.h b/include/MSGraphRegistryValueType.h new file mode 120000 index 00000000..a218ac54 --- /dev/null +++ b/include/MSGraphRegistryValueType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRegistryValueType.h \ No newline at end of file diff --git a/include/MSGraphRejectReason.h b/include/MSGraphRejectReason.h new file mode 120000 index 00000000..485857ba --- /dev/null +++ b/include/MSGraphRejectReason.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRejectReason.h \ No newline at end of file diff --git a/include/MSGraphReminder.h b/include/MSGraphReminder.h new file mode 120000 index 00000000..fca48e5f --- /dev/null +++ b/include/MSGraphReminder.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphReminder.h \ No newline at end of file diff --git a/include/MSGraphRemoteAssistanceOnboardingStatus.h b/include/MSGraphRemoteAssistanceOnboardingStatus.h new file mode 120000 index 00000000..e52e9dd2 --- /dev/null +++ b/include/MSGraphRemoteAssistanceOnboardingStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRemoteAssistanceOnboardingStatus.h \ No newline at end of file diff --git a/include/MSGraphRemoteAssistancePartner.h b/include/MSGraphRemoteAssistancePartner.h new file mode 120000 index 00000000..7dd312a0 --- /dev/null +++ b/include/MSGraphRemoteAssistancePartner.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRemoteAssistancePartner.h \ No newline at end of file diff --git a/include/MSGraphRemoteItem.h b/include/MSGraphRemoteItem.h new file mode 120000 index 00000000..5e17e646 --- /dev/null +++ b/include/MSGraphRemoteItem.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRemoteItem.h \ No newline at end of file diff --git a/include/MSGraphRemoteLockActionResult.h b/include/MSGraphRemoteLockActionResult.h new file mode 120000 index 00000000..7ac0ce8d --- /dev/null +++ b/include/MSGraphRemoteLockActionResult.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRemoteLockActionResult.h \ No newline at end of file diff --git a/include/MSGraphReport.h b/include/MSGraphReport.h new file mode 120000 index 00000000..ff045cb0 --- /dev/null +++ b/include/MSGraphReport.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphReport.h \ No newline at end of file diff --git a/include/MSGraphReportRoot.h b/include/MSGraphReportRoot.h new file mode 120000 index 00000000..8a3eb183 --- /dev/null +++ b/include/MSGraphReportRoot.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphReportRoot.h \ No newline at end of file diff --git a/include/MSGraphRequest.h b/include/MSGraphRequest.h new file mode 120000 index 00000000..bc7ffb19 --- /dev/null +++ b/include/MSGraphRequest.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRequest.h \ No newline at end of file diff --git a/include/MSGraphRequiredPasswordType.h b/include/MSGraphRequiredPasswordType.h new file mode 120000 index 00000000..66c9ccb1 --- /dev/null +++ b/include/MSGraphRequiredPasswordType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRequiredPasswordType.h \ No newline at end of file diff --git a/include/MSGraphRequiredResourceAccess.h b/include/MSGraphRequiredResourceAccess.h new file mode 120000 index 00000000..a00b6493 --- /dev/null +++ b/include/MSGraphRequiredResourceAccess.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRequiredResourceAccess.h \ No newline at end of file diff --git a/include/MSGraphResetPasscodeActionResult.h b/include/MSGraphResetPasscodeActionResult.h new file mode 120000 index 00000000..fe37f4c0 --- /dev/null +++ b/include/MSGraphResetPasscodeActionResult.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphResetPasscodeActionResult.h \ No newline at end of file diff --git a/include/MSGraphResourceAccess.h b/include/MSGraphResourceAccess.h new file mode 120000 index 00000000..cf528a3e --- /dev/null +++ b/include/MSGraphResourceAccess.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphResourceAccess.h \ No newline at end of file diff --git a/include/MSGraphResourceAction.h b/include/MSGraphResourceAction.h new file mode 120000 index 00000000..bd48e2ce --- /dev/null +++ b/include/MSGraphResourceAction.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphResourceAction.h \ No newline at end of file diff --git a/include/MSGraphResourceData.h b/include/MSGraphResourceData.h new file mode 120000 index 00000000..6657cdd2 --- /dev/null +++ b/include/MSGraphResourceData.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphResourceData.h \ No newline at end of file diff --git a/include/MSGraphResourceOperation.h b/include/MSGraphResourceOperation.h new file mode 120000 index 00000000..857c9086 --- /dev/null +++ b/include/MSGraphResourceOperation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphResourceOperation.h \ No newline at end of file diff --git a/include/MSGraphResourcePermission.h b/include/MSGraphResourcePermission.h new file mode 120000 index 00000000..e93e9b01 --- /dev/null +++ b/include/MSGraphResourcePermission.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphResourcePermission.h \ No newline at end of file diff --git a/include/MSGraphResourceReference.h b/include/MSGraphResourceReference.h new file mode 120000 index 00000000..ebc0da7e --- /dev/null +++ b/include/MSGraphResourceReference.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphResourceReference.h \ No newline at end of file diff --git a/include/MSGraphResourceSpecificPermissionGrant.h b/include/MSGraphResourceSpecificPermissionGrant.h new file mode 120000 index 00000000..84b03257 --- /dev/null +++ b/include/MSGraphResourceSpecificPermissionGrant.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphResourceSpecificPermissionGrant.h \ No newline at end of file diff --git a/include/MSGraphResourceVisualization.h b/include/MSGraphResourceVisualization.h new file mode 120000 index 00000000..8c94c647 --- /dev/null +++ b/include/MSGraphResourceVisualization.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphResourceVisualization.h \ No newline at end of file diff --git a/include/MSGraphResponseStatus.h b/include/MSGraphResponseStatus.h new file mode 120000 index 00000000..7233d571 --- /dev/null +++ b/include/MSGraphResponseStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphResponseStatus.h \ No newline at end of file diff --git a/include/MSGraphResponseType.h b/include/MSGraphResponseType.h new file mode 120000 index 00000000..da94181f --- /dev/null +++ b/include/MSGraphResponseType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphResponseType.h \ No newline at end of file diff --git a/include/MSGraphRestrictedSignIn.h b/include/MSGraphRestrictedSignIn.h new file mode 120000 index 00000000..745d59a2 --- /dev/null +++ b/include/MSGraphRestrictedSignIn.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRestrictedSignIn.h \ No newline at end of file diff --git a/include/MSGraphResultInfo.h b/include/MSGraphResultInfo.h new file mode 120000 index 00000000..fe6a66eb --- /dev/null +++ b/include/MSGraphResultInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphResultInfo.h \ No newline at end of file diff --git a/include/MSGraphRgbColor.h b/include/MSGraphRgbColor.h new file mode 120000 index 00000000..1f42e5bd --- /dev/null +++ b/include/MSGraphRgbColor.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRgbColor.h \ No newline at end of file diff --git a/include/MSGraphRiskDetail.h b/include/MSGraphRiskDetail.h new file mode 120000 index 00000000..68f11d91 --- /dev/null +++ b/include/MSGraphRiskDetail.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRiskDetail.h \ No newline at end of file diff --git a/include/MSGraphRiskEventType.h b/include/MSGraphRiskEventType.h new file mode 120000 index 00000000..7de68603 --- /dev/null +++ b/include/MSGraphRiskEventType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRiskEventType.h \ No newline at end of file diff --git a/include/MSGraphRiskLevel.h b/include/MSGraphRiskLevel.h new file mode 120000 index 00000000..8453b417 --- /dev/null +++ b/include/MSGraphRiskLevel.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRiskLevel.h \ No newline at end of file diff --git a/include/MSGraphRiskState.h b/include/MSGraphRiskState.h new file mode 120000 index 00000000..430b86db --- /dev/null +++ b/include/MSGraphRiskState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRiskState.h \ No newline at end of file diff --git a/include/MSGraphRoleAssignment.h b/include/MSGraphRoleAssignment.h new file mode 120000 index 00000000..d75461e1 --- /dev/null +++ b/include/MSGraphRoleAssignment.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRoleAssignment.h \ No newline at end of file diff --git a/include/MSGraphRoleDefinition.h b/include/MSGraphRoleDefinition.h new file mode 120000 index 00000000..f07868ab --- /dev/null +++ b/include/MSGraphRoleDefinition.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRoleDefinition.h \ No newline at end of file diff --git a/include/MSGraphRoleManagement.h b/include/MSGraphRoleManagement.h new file mode 120000 index 00000000..9779f20d --- /dev/null +++ b/include/MSGraphRoleManagement.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRoleManagement.h \ No newline at end of file diff --git a/include/MSGraphRolePermission.h b/include/MSGraphRolePermission.h new file mode 120000 index 00000000..8e1088d9 --- /dev/null +++ b/include/MSGraphRolePermission.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRolePermission.h \ No newline at end of file diff --git a/include/MSGraphRoom.h b/include/MSGraphRoom.h new file mode 120000 index 00000000..c8da4b3a --- /dev/null +++ b/include/MSGraphRoom.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRoom.h \ No newline at end of file diff --git a/include/MSGraphRoomList.h b/include/MSGraphRoomList.h new file mode 120000 index 00000000..40864a63 --- /dev/null +++ b/include/MSGraphRoomList.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRoomList.h \ No newline at end of file diff --git a/include/MSGraphRoot.h b/include/MSGraphRoot.h new file mode 120000 index 00000000..30a90166 --- /dev/null +++ b/include/MSGraphRoot.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRoot.h \ No newline at end of file diff --git a/include/MSGraphRoutingType.h b/include/MSGraphRoutingType.h new file mode 120000 index 00000000..1ba301af --- /dev/null +++ b/include/MSGraphRoutingType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRoutingType.h \ No newline at end of file diff --git a/include/MSGraphRunAsAccountType.h b/include/MSGraphRunAsAccountType.h new file mode 120000 index 00000000..6fa3e649 --- /dev/null +++ b/include/MSGraphRunAsAccountType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphRunAsAccountType.h \ No newline at end of file diff --git a/include/MSGraphSafeSearchFilterType.h b/include/MSGraphSafeSearchFilterType.h new file mode 120000 index 00000000..e05125d6 --- /dev/null +++ b/include/MSGraphSafeSearchFilterType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSafeSearchFilterType.h \ No newline at end of file diff --git a/include/MSGraphSamlSingleSignOnSettings.h b/include/MSGraphSamlSingleSignOnSettings.h new file mode 120000 index 00000000..657bb224 --- /dev/null +++ b/include/MSGraphSamlSingleSignOnSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSamlSingleSignOnSettings.h \ No newline at end of file diff --git a/include/MSGraphSchedule.h b/include/MSGraphSchedule.h new file mode 120000 index 00000000..2c574e99 --- /dev/null +++ b/include/MSGraphSchedule.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSchedule.h \ No newline at end of file diff --git a/include/MSGraphScheduleChangeRequest.h b/include/MSGraphScheduleChangeRequest.h new file mode 120000 index 00000000..89f801de --- /dev/null +++ b/include/MSGraphScheduleChangeRequest.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphScheduleChangeRequest.h \ No newline at end of file diff --git a/include/MSGraphScheduleChangeRequestActor.h b/include/MSGraphScheduleChangeRequestActor.h new file mode 120000 index 00000000..85e83b7c --- /dev/null +++ b/include/MSGraphScheduleChangeRequestActor.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphScheduleChangeRequestActor.h \ No newline at end of file diff --git a/include/MSGraphScheduleChangeState.h b/include/MSGraphScheduleChangeState.h new file mode 120000 index 00000000..1f127b7f --- /dev/null +++ b/include/MSGraphScheduleChangeState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphScheduleChangeState.h \ No newline at end of file diff --git a/include/MSGraphScheduleEntity.h b/include/MSGraphScheduleEntity.h new file mode 120000 index 00000000..cecda022 --- /dev/null +++ b/include/MSGraphScheduleEntity.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphScheduleEntity.h \ No newline at end of file diff --git a/include/MSGraphScheduleEntityTheme.h b/include/MSGraphScheduleEntityTheme.h new file mode 120000 index 00000000..1f352c36 --- /dev/null +++ b/include/MSGraphScheduleEntityTheme.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphScheduleEntityTheme.h \ No newline at end of file diff --git a/include/MSGraphScheduleInformation.h b/include/MSGraphScheduleInformation.h new file mode 120000 index 00000000..a1e1539d --- /dev/null +++ b/include/MSGraphScheduleInformation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphScheduleInformation.h \ No newline at end of file diff --git a/include/MSGraphScheduleItem.h b/include/MSGraphScheduleItem.h new file mode 120000 index 00000000..6dc218a7 --- /dev/null +++ b/include/MSGraphScheduleItem.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphScheduleItem.h \ No newline at end of file diff --git a/include/MSGraphSchedulingGroup.h b/include/MSGraphSchedulingGroup.h new file mode 120000 index 00000000..3b9e0573 --- /dev/null +++ b/include/MSGraphSchedulingGroup.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSchedulingGroup.h \ No newline at end of file diff --git a/include/MSGraphSchemaExtension.h b/include/MSGraphSchemaExtension.h new file mode 120000 index 00000000..f62cf64b --- /dev/null +++ b/include/MSGraphSchemaExtension.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSchemaExtension.h \ No newline at end of file diff --git a/include/MSGraphScopedRoleMembership.h b/include/MSGraphScopedRoleMembership.h new file mode 120000 index 00000000..7da7c3d7 --- /dev/null +++ b/include/MSGraphScopedRoleMembership.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphScopedRoleMembership.h \ No newline at end of file diff --git a/include/MSGraphScoredEmailAddress.h b/include/MSGraphScoredEmailAddress.h new file mode 120000 index 00000000..6fb92afe --- /dev/null +++ b/include/MSGraphScoredEmailAddress.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphScoredEmailAddress.h \ No newline at end of file diff --git a/include/MSGraphScreenSharingRole.h b/include/MSGraphScreenSharingRole.h new file mode 120000 index 00000000..d8bab884 --- /dev/null +++ b/include/MSGraphScreenSharingRole.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphScreenSharingRole.h \ No newline at end of file diff --git a/include/MSGraphSearchEntity.h b/include/MSGraphSearchEntity.h new file mode 120000 index 00000000..7bda035f --- /dev/null +++ b/include/MSGraphSearchEntity.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSearchEntity.h \ No newline at end of file diff --git a/include/MSGraphSearchHit.h b/include/MSGraphSearchHit.h new file mode 120000 index 00000000..e166a4f7 --- /dev/null +++ b/include/MSGraphSearchHit.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSearchHit.h \ No newline at end of file diff --git a/include/MSGraphSearchHitsContainer.h b/include/MSGraphSearchHitsContainer.h new file mode 120000 index 00000000..8285d048 --- /dev/null +++ b/include/MSGraphSearchHitsContainer.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSearchHitsContainer.h \ No newline at end of file diff --git a/include/MSGraphSearchQuery.h b/include/MSGraphSearchQuery.h new file mode 120000 index 00000000..9b0a6896 --- /dev/null +++ b/include/MSGraphSearchQuery.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSearchQuery.h \ No newline at end of file diff --git a/include/MSGraphSearchRequest.h b/include/MSGraphSearchRequest.h new file mode 120000 index 00000000..f850fd5a --- /dev/null +++ b/include/MSGraphSearchRequest.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSearchRequest.h \ No newline at end of file diff --git a/include/MSGraphSearchResponse.h b/include/MSGraphSearchResponse.h new file mode 120000 index 00000000..a71a0a14 --- /dev/null +++ b/include/MSGraphSearchResponse.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSearchResponse.h \ No newline at end of file diff --git a/include/MSGraphSearchResult.h b/include/MSGraphSearchResult.h new file mode 120000 index 00000000..0ac2220e --- /dev/null +++ b/include/MSGraphSearchResult.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSearchResult.h \ No newline at end of file diff --git a/include/MSGraphSectionGroup.h b/include/MSGraphSectionGroup.h new file mode 120000 index 00000000..92a7b19c --- /dev/null +++ b/include/MSGraphSectionGroup.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSectionGroup.h \ No newline at end of file diff --git a/include/MSGraphSectionLinks.h b/include/MSGraphSectionLinks.h new file mode 120000 index 00000000..ede12727 --- /dev/null +++ b/include/MSGraphSectionLinks.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSectionLinks.h \ No newline at end of file diff --git a/include/MSGraphSecureScore.h b/include/MSGraphSecureScore.h new file mode 120000 index 00000000..916d9093 --- /dev/null +++ b/include/MSGraphSecureScore.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSecureScore.h \ No newline at end of file diff --git a/include/MSGraphSecureScoreControlProfile.h b/include/MSGraphSecureScoreControlProfile.h new file mode 120000 index 00000000..8c29e505 --- /dev/null +++ b/include/MSGraphSecureScoreControlProfile.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSecureScoreControlProfile.h \ No newline at end of file diff --git a/include/MSGraphSecureScoreControlStateUpdate.h b/include/MSGraphSecureScoreControlStateUpdate.h new file mode 120000 index 00000000..4637af98 --- /dev/null +++ b/include/MSGraphSecureScoreControlStateUpdate.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSecureScoreControlStateUpdate.h \ No newline at end of file diff --git a/include/MSGraphSecurity.h b/include/MSGraphSecurity.h new file mode 120000 index 00000000..e8671d5e --- /dev/null +++ b/include/MSGraphSecurity.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSecurity.h \ No newline at end of file diff --git a/include/MSGraphSecurityNetworkProtocol.h b/include/MSGraphSecurityNetworkProtocol.h new file mode 120000 index 00000000..3b5048f8 --- /dev/null +++ b/include/MSGraphSecurityNetworkProtocol.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSecurityNetworkProtocol.h \ No newline at end of file diff --git a/include/MSGraphSecurityResource.h b/include/MSGraphSecurityResource.h new file mode 120000 index 00000000..bc230eff --- /dev/null +++ b/include/MSGraphSecurityResource.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSecurityResource.h \ No newline at end of file diff --git a/include/MSGraphSecurityResourceType.h b/include/MSGraphSecurityResourceType.h new file mode 120000 index 00000000..19d860dc --- /dev/null +++ b/include/MSGraphSecurityResourceType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSecurityResourceType.h \ No newline at end of file diff --git a/include/MSGraphSecurityVendorInformation.h b/include/MSGraphSecurityVendorInformation.h new file mode 120000 index 00000000..8a974965 --- /dev/null +++ b/include/MSGraphSecurityVendorInformation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSecurityVendorInformation.h \ No newline at end of file diff --git a/include/MSGraphSelectionLikelihoodInfo.h b/include/MSGraphSelectionLikelihoodInfo.h new file mode 120000 index 00000000..e707f063 --- /dev/null +++ b/include/MSGraphSelectionLikelihoodInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSelectionLikelihoodInfo.h \ No newline at end of file diff --git a/include/MSGraphSensitivity.h b/include/MSGraphSensitivity.h new file mode 120000 index 00000000..02b4afdb --- /dev/null +++ b/include/MSGraphSensitivity.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSensitivity.h \ No newline at end of file diff --git a/include/MSGraphServiceHostedMediaConfig.h b/include/MSGraphServiceHostedMediaConfig.h new file mode 120000 index 00000000..d6bd2225 --- /dev/null +++ b/include/MSGraphServiceHostedMediaConfig.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphServiceHostedMediaConfig.h \ No newline at end of file diff --git a/include/MSGraphServicePlanInfo.h b/include/MSGraphServicePlanInfo.h new file mode 120000 index 00000000..3a1bedd8 --- /dev/null +++ b/include/MSGraphServicePlanInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphServicePlanInfo.h \ No newline at end of file diff --git a/include/MSGraphServicePrincipal.h b/include/MSGraphServicePrincipal.h new file mode 120000 index 00000000..90ae30a8 --- /dev/null +++ b/include/MSGraphServicePrincipal.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphServicePrincipal.h \ No newline at end of file diff --git a/include/MSGraphSettingSource.h b/include/MSGraphSettingSource.h new file mode 120000 index 00000000..4c52b312 --- /dev/null +++ b/include/MSGraphSettingSource.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSettingSource.h \ No newline at end of file diff --git a/include/MSGraphSettingStateDeviceSummary.h b/include/MSGraphSettingStateDeviceSummary.h new file mode 120000 index 00000000..27df79c8 --- /dev/null +++ b/include/MSGraphSettingStateDeviceSummary.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSettingStateDeviceSummary.h \ No newline at end of file diff --git a/include/MSGraphSettingTemplateValue.h b/include/MSGraphSettingTemplateValue.h new file mode 120000 index 00000000..b1cc5062 --- /dev/null +++ b/include/MSGraphSettingTemplateValue.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSettingTemplateValue.h \ No newline at end of file diff --git a/include/MSGraphSettingValue.h b/include/MSGraphSettingValue.h new file mode 120000 index 00000000..ba6cbb63 --- /dev/null +++ b/include/MSGraphSettingValue.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSettingValue.h \ No newline at end of file diff --git a/include/MSGraphShared.h b/include/MSGraphShared.h new file mode 120000 index 00000000..f764aea9 --- /dev/null +++ b/include/MSGraphShared.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphShared.h \ No newline at end of file diff --git a/include/MSGraphSharedDriveItem.h b/include/MSGraphSharedDriveItem.h new file mode 120000 index 00000000..db7f3135 --- /dev/null +++ b/include/MSGraphSharedDriveItem.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSharedDriveItem.h \ No newline at end of file diff --git a/include/MSGraphSharedInsight.h b/include/MSGraphSharedInsight.h new file mode 120000 index 00000000..aef289e3 --- /dev/null +++ b/include/MSGraphSharedInsight.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSharedInsight.h \ No newline at end of file diff --git a/include/MSGraphSharedPCAccountDeletionPolicyType.h b/include/MSGraphSharedPCAccountDeletionPolicyType.h new file mode 120000 index 00000000..723bc4c4 --- /dev/null +++ b/include/MSGraphSharedPCAccountDeletionPolicyType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSharedPCAccountDeletionPolicyType.h \ No newline at end of file diff --git a/include/MSGraphSharedPCAccountManagerPolicy.h b/include/MSGraphSharedPCAccountManagerPolicy.h new file mode 120000 index 00000000..21cd0861 --- /dev/null +++ b/include/MSGraphSharedPCAccountManagerPolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSharedPCAccountManagerPolicy.h \ No newline at end of file diff --git a/include/MSGraphSharedPCAllowedAccountType.h b/include/MSGraphSharedPCAllowedAccountType.h new file mode 120000 index 00000000..259e651e --- /dev/null +++ b/include/MSGraphSharedPCAllowedAccountType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSharedPCAllowedAccountType.h \ No newline at end of file diff --git a/include/MSGraphSharedPCConfiguration.h b/include/MSGraphSharedPCConfiguration.h new file mode 120000 index 00000000..b4b1edae --- /dev/null +++ b/include/MSGraphSharedPCConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSharedPCConfiguration.h \ No newline at end of file diff --git a/include/MSGraphSharepointIds.h b/include/MSGraphSharepointIds.h new file mode 120000 index 00000000..0f9fe577 --- /dev/null +++ b/include/MSGraphSharepointIds.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSharepointIds.h \ No newline at end of file diff --git a/include/MSGraphSharingDetail.h b/include/MSGraphSharingDetail.h new file mode 120000 index 00000000..5af87cc4 --- /dev/null +++ b/include/MSGraphSharingDetail.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSharingDetail.h \ No newline at end of file diff --git a/include/MSGraphSharingInvitation.h b/include/MSGraphSharingInvitation.h new file mode 120000 index 00000000..929244ad --- /dev/null +++ b/include/MSGraphSharingInvitation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSharingInvitation.h \ No newline at end of file diff --git a/include/MSGraphSharingLink.h b/include/MSGraphSharingLink.h new file mode 120000 index 00000000..86bddeb6 --- /dev/null +++ b/include/MSGraphSharingLink.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSharingLink.h \ No newline at end of file diff --git a/include/MSGraphShift.h b/include/MSGraphShift.h new file mode 120000 index 00000000..0cf6c9d0 --- /dev/null +++ b/include/MSGraphShift.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphShift.h \ No newline at end of file diff --git a/include/MSGraphShiftActivity.h b/include/MSGraphShiftActivity.h new file mode 120000 index 00000000..b61b13da --- /dev/null +++ b/include/MSGraphShiftActivity.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphShiftActivity.h \ No newline at end of file diff --git a/include/MSGraphShiftAvailability.h b/include/MSGraphShiftAvailability.h new file mode 120000 index 00000000..224048aa --- /dev/null +++ b/include/MSGraphShiftAvailability.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphShiftAvailability.h \ No newline at end of file diff --git a/include/MSGraphShiftItem.h b/include/MSGraphShiftItem.h new file mode 120000 index 00000000..896795e2 --- /dev/null +++ b/include/MSGraphShiftItem.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphShiftItem.h \ No newline at end of file diff --git a/include/MSGraphShiftPreferences.h b/include/MSGraphShiftPreferences.h new file mode 120000 index 00000000..0dd71683 --- /dev/null +++ b/include/MSGraphShiftPreferences.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphShiftPreferences.h \ No newline at end of file diff --git a/include/MSGraphSignIn.h b/include/MSGraphSignIn.h new file mode 120000 index 00000000..4ba7faaa --- /dev/null +++ b/include/MSGraphSignIn.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSignIn.h \ No newline at end of file diff --git a/include/MSGraphSignInFrequencySessionControl.h b/include/MSGraphSignInFrequencySessionControl.h new file mode 120000 index 00000000..5ecc45df --- /dev/null +++ b/include/MSGraphSignInFrequencySessionControl.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSignInFrequencySessionControl.h \ No newline at end of file diff --git a/include/MSGraphSignInLocation.h b/include/MSGraphSignInLocation.h new file mode 120000 index 00000000..bc1993ba --- /dev/null +++ b/include/MSGraphSignInLocation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSignInLocation.h \ No newline at end of file diff --git a/include/MSGraphSignInStatus.h b/include/MSGraphSignInStatus.h new file mode 120000 index 00000000..c15e20d4 --- /dev/null +++ b/include/MSGraphSignInStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSignInStatus.h \ No newline at end of file diff --git a/include/MSGraphSigninFrequencyType.h b/include/MSGraphSigninFrequencyType.h new file mode 120000 index 00000000..b56cc884 --- /dev/null +++ b/include/MSGraphSigninFrequencyType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSigninFrequencyType.h \ No newline at end of file diff --git a/include/MSGraphSingleValueLegacyExtendedProperty.h b/include/MSGraphSingleValueLegacyExtendedProperty.h new file mode 120000 index 00000000..14307eee --- /dev/null +++ b/include/MSGraphSingleValueLegacyExtendedProperty.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSingleValueLegacyExtendedProperty.h \ No newline at end of file diff --git a/include/MSGraphSite.h b/include/MSGraphSite.h new file mode 120000 index 00000000..fec231e3 --- /dev/null +++ b/include/MSGraphSite.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSite.h \ No newline at end of file diff --git a/include/MSGraphSiteCollection.h b/include/MSGraphSiteCollection.h new file mode 120000 index 00000000..902606c8 --- /dev/null +++ b/include/MSGraphSiteCollection.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSiteCollection.h \ No newline at end of file diff --git a/include/MSGraphSiteSecurityLevel.h b/include/MSGraphSiteSecurityLevel.h new file mode 120000 index 00000000..a9b41feb --- /dev/null +++ b/include/MSGraphSiteSecurityLevel.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSiteSecurityLevel.h \ No newline at end of file diff --git a/include/MSGraphSizeRange.h b/include/MSGraphSizeRange.h new file mode 120000 index 00000000..f61ff9ef --- /dev/null +++ b/include/MSGraphSizeRange.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSizeRange.h \ No newline at end of file diff --git a/include/MSGraphSoftwareUpdateStatusSummary.h b/include/MSGraphSoftwareUpdateStatusSummary.h new file mode 120000 index 00000000..3ddc575d --- /dev/null +++ b/include/MSGraphSoftwareUpdateStatusSummary.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSoftwareUpdateStatusSummary.h \ No newline at end of file diff --git a/include/MSGraphSpaApplication.h b/include/MSGraphSpaApplication.h new file mode 120000 index 00000000..06db391c --- /dev/null +++ b/include/MSGraphSpaApplication.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSpaApplication.h \ No newline at end of file diff --git a/include/MSGraphSpecialFolder.h b/include/MSGraphSpecialFolder.h new file mode 120000 index 00000000..2f85e908 --- /dev/null +++ b/include/MSGraphSpecialFolder.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSpecialFolder.h \ No newline at end of file diff --git a/include/MSGraphStagedFeatureName.h b/include/MSGraphStagedFeatureName.h new file mode 120000 index 00000000..eea19551 --- /dev/null +++ b/include/MSGraphStagedFeatureName.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphStagedFeatureName.h \ No newline at end of file diff --git a/include/MSGraphStandardTimeZoneOffset.h b/include/MSGraphStandardTimeZoneOffset.h new file mode 120000 index 00000000..5a6c1abb --- /dev/null +++ b/include/MSGraphStandardTimeZoneOffset.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphStandardTimeZoneOffset.h \ No newline at end of file diff --git a/include/MSGraphStateManagementSetting.h b/include/MSGraphStateManagementSetting.h new file mode 120000 index 00000000..dc153a3b --- /dev/null +++ b/include/MSGraphStateManagementSetting.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphStateManagementSetting.h \ No newline at end of file diff --git a/include/MSGraphStatus.h b/include/MSGraphStatus.h new file mode 120000 index 00000000..64936cc6 --- /dev/null +++ b/include/MSGraphStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphStatus.h \ No newline at end of file diff --git a/include/MSGraphStoragePlanInformation.h b/include/MSGraphStoragePlanInformation.h new file mode 120000 index 00000000..6cbc6b39 --- /dev/null +++ b/include/MSGraphStoragePlanInformation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphStoragePlanInformation.h \ No newline at end of file diff --git a/include/MSGraphStsPolicy.h b/include/MSGraphStsPolicy.h new file mode 120000 index 00000000..b790f12d --- /dev/null +++ b/include/MSGraphStsPolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphStsPolicy.h \ No newline at end of file diff --git a/include/MSGraphSubscribeToToneOperation.h b/include/MSGraphSubscribeToToneOperation.h new file mode 120000 index 00000000..a448978b --- /dev/null +++ b/include/MSGraphSubscribeToToneOperation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSubscribeToToneOperation.h \ No newline at end of file diff --git a/include/MSGraphSubscribedSku.h b/include/MSGraphSubscribedSku.h new file mode 120000 index 00000000..727d29fc --- /dev/null +++ b/include/MSGraphSubscribedSku.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSubscribedSku.h \ No newline at end of file diff --git a/include/MSGraphSubscription.h b/include/MSGraphSubscription.h new file mode 120000 index 00000000..1a1601a7 --- /dev/null +++ b/include/MSGraphSubscription.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSubscription.h \ No newline at end of file diff --git a/include/MSGraphSwapShiftsChangeRequest.h b/include/MSGraphSwapShiftsChangeRequest.h new file mode 120000 index 00000000..0d0aecad --- /dev/null +++ b/include/MSGraphSwapShiftsChangeRequest.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSwapShiftsChangeRequest.h \ No newline at end of file diff --git a/include/MSGraphSystemFacet.h b/include/MSGraphSystemFacet.h new file mode 120000 index 00000000..43bd4348 --- /dev/null +++ b/include/MSGraphSystemFacet.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphSystemFacet.h \ No newline at end of file diff --git a/include/MSGraphTargetResource.h b/include/MSGraphTargetResource.h new file mode 120000 index 00000000..41eb18b9 --- /dev/null +++ b/include/MSGraphTargetResource.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTargetResource.h \ No newline at end of file diff --git a/include/MSGraphTargetedManagedAppConfiguration.h b/include/MSGraphTargetedManagedAppConfiguration.h new file mode 120000 index 00000000..f166c3f9 --- /dev/null +++ b/include/MSGraphTargetedManagedAppConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTargetedManagedAppConfiguration.h \ No newline at end of file diff --git a/include/MSGraphTargetedManagedAppPolicyAssignment.h b/include/MSGraphTargetedManagedAppPolicyAssignment.h new file mode 120000 index 00000000..68a00d69 --- /dev/null +++ b/include/MSGraphTargetedManagedAppPolicyAssignment.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTargetedManagedAppPolicyAssignment.h \ No newline at end of file diff --git a/include/MSGraphTargetedManagedAppProtection.h b/include/MSGraphTargetedManagedAppProtection.h new file mode 120000 index 00000000..58186a6e --- /dev/null +++ b/include/MSGraphTargetedManagedAppProtection.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTargetedManagedAppProtection.h \ No newline at end of file diff --git a/include/MSGraphTaskStatus.h b/include/MSGraphTaskStatus.h new file mode 120000 index 00000000..3034725a --- /dev/null +++ b/include/MSGraphTaskStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTaskStatus.h \ No newline at end of file diff --git a/include/MSGraphTeam.h b/include/MSGraphTeam.h new file mode 120000 index 00000000..1450a441 --- /dev/null +++ b/include/MSGraphTeam.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeam.h \ No newline at end of file diff --git a/include/MSGraphTeamClassSettings.h b/include/MSGraphTeamClassSettings.h new file mode 120000 index 00000000..428c3e24 --- /dev/null +++ b/include/MSGraphTeamClassSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamClassSettings.h \ No newline at end of file diff --git a/include/MSGraphTeamFunSettings.h b/include/MSGraphTeamFunSettings.h new file mode 120000 index 00000000..04302eb0 --- /dev/null +++ b/include/MSGraphTeamFunSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamFunSettings.h \ No newline at end of file diff --git a/include/MSGraphTeamGuestSettings.h b/include/MSGraphTeamGuestSettings.h new file mode 120000 index 00000000..bac6e13a --- /dev/null +++ b/include/MSGraphTeamGuestSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamGuestSettings.h \ No newline at end of file diff --git a/include/MSGraphTeamMemberSettings.h b/include/MSGraphTeamMemberSettings.h new file mode 120000 index 00000000..2a1e4d51 --- /dev/null +++ b/include/MSGraphTeamMemberSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamMemberSettings.h \ No newline at end of file diff --git a/include/MSGraphTeamMessagingSettings.h b/include/MSGraphTeamMessagingSettings.h new file mode 120000 index 00000000..14cd0c9b --- /dev/null +++ b/include/MSGraphTeamMessagingSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamMessagingSettings.h \ No newline at end of file diff --git a/include/MSGraphTeamSpecialization.h b/include/MSGraphTeamSpecialization.h new file mode 120000 index 00000000..8a3ffc89 --- /dev/null +++ b/include/MSGraphTeamSpecialization.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamSpecialization.h \ No newline at end of file diff --git a/include/MSGraphTeamVisibilityType.h b/include/MSGraphTeamVisibilityType.h new file mode 120000 index 00000000..462bb89a --- /dev/null +++ b/include/MSGraphTeamVisibilityType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamVisibilityType.h \ No newline at end of file diff --git a/include/MSGraphTeamsApp.h b/include/MSGraphTeamsApp.h new file mode 120000 index 00000000..f2440576 --- /dev/null +++ b/include/MSGraphTeamsApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamsApp.h \ No newline at end of file diff --git a/include/MSGraphTeamsAppDefinition.h b/include/MSGraphTeamsAppDefinition.h new file mode 120000 index 00000000..af1e432c --- /dev/null +++ b/include/MSGraphTeamsAppDefinition.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamsAppDefinition.h \ No newline at end of file diff --git a/include/MSGraphTeamsAppDistributionMethod.h b/include/MSGraphTeamsAppDistributionMethod.h new file mode 120000 index 00000000..e22fcef9 --- /dev/null +++ b/include/MSGraphTeamsAppDistributionMethod.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamsAppDistributionMethod.h \ No newline at end of file diff --git a/include/MSGraphTeamsAppInstallation.h b/include/MSGraphTeamsAppInstallation.h new file mode 120000 index 00000000..5494403c --- /dev/null +++ b/include/MSGraphTeamsAppInstallation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamsAppInstallation.h \ No newline at end of file diff --git a/include/MSGraphTeamsAppPublishingState.h b/include/MSGraphTeamsAppPublishingState.h new file mode 120000 index 00000000..74519bfc --- /dev/null +++ b/include/MSGraphTeamsAppPublishingState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamsAppPublishingState.h \ No newline at end of file diff --git a/include/MSGraphTeamsAsyncOperation.h b/include/MSGraphTeamsAsyncOperation.h new file mode 120000 index 00000000..1971fe47 --- /dev/null +++ b/include/MSGraphTeamsAsyncOperation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamsAsyncOperation.h \ No newline at end of file diff --git a/include/MSGraphTeamsAsyncOperationStatus.h b/include/MSGraphTeamsAsyncOperationStatus.h new file mode 120000 index 00000000..cef01ccf --- /dev/null +++ b/include/MSGraphTeamsAsyncOperationStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamsAsyncOperationStatus.h \ No newline at end of file diff --git a/include/MSGraphTeamsAsyncOperationType.h b/include/MSGraphTeamsAsyncOperationType.h new file mode 120000 index 00000000..93915b8f --- /dev/null +++ b/include/MSGraphTeamsAsyncOperationType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamsAsyncOperationType.h \ No newline at end of file diff --git a/include/MSGraphTeamsTab.h b/include/MSGraphTeamsTab.h new file mode 120000 index 00000000..f7457b1c --- /dev/null +++ b/include/MSGraphTeamsTab.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamsTab.h \ No newline at end of file diff --git a/include/MSGraphTeamsTabConfiguration.h b/include/MSGraphTeamsTabConfiguration.h new file mode 120000 index 00000000..9e1a72a1 --- /dev/null +++ b/include/MSGraphTeamsTabConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamsTabConfiguration.h \ No newline at end of file diff --git a/include/MSGraphTeamsTemplate.h b/include/MSGraphTeamsTemplate.h new file mode 120000 index 00000000..ca9c065a --- /dev/null +++ b/include/MSGraphTeamsTemplate.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamsTemplate.h \ No newline at end of file diff --git a/include/MSGraphTeamwork.h b/include/MSGraphTeamwork.h new file mode 120000 index 00000000..14bae250 --- /dev/null +++ b/include/MSGraphTeamwork.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamwork.h \ No newline at end of file diff --git a/include/MSGraphTeamworkActivityTopic.h b/include/MSGraphTeamworkActivityTopic.h new file mode 120000 index 00000000..ade9fe0e --- /dev/null +++ b/include/MSGraphTeamworkActivityTopic.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamworkActivityTopic.h \ No newline at end of file diff --git a/include/MSGraphTeamworkActivityTopicSource.h b/include/MSGraphTeamworkActivityTopicSource.h new file mode 120000 index 00000000..ce997420 --- /dev/null +++ b/include/MSGraphTeamworkActivityTopicSource.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamworkActivityTopicSource.h \ No newline at end of file diff --git a/include/MSGraphTeamworkBot.h b/include/MSGraphTeamworkBot.h new file mode 120000 index 00000000..d2910a20 --- /dev/null +++ b/include/MSGraphTeamworkBot.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamworkBot.h \ No newline at end of file diff --git a/include/MSGraphTeamworkHostedContent.h b/include/MSGraphTeamworkHostedContent.h new file mode 120000 index 00000000..d9ab88b3 --- /dev/null +++ b/include/MSGraphTeamworkHostedContent.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamworkHostedContent.h \ No newline at end of file diff --git a/include/MSGraphTeamworkNotificationRecipient.h b/include/MSGraphTeamworkNotificationRecipient.h new file mode 120000 index 00000000..b3d11080 --- /dev/null +++ b/include/MSGraphTeamworkNotificationRecipient.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeamworkNotificationRecipient.h \ No newline at end of file diff --git a/include/MSGraphTelecomExpenseManagementPartner.h b/include/MSGraphTelecomExpenseManagementPartner.h new file mode 120000 index 00000000..91bd9369 --- /dev/null +++ b/include/MSGraphTelecomExpenseManagementPartner.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTelecomExpenseManagementPartner.h \ No newline at end of file diff --git a/include/MSGraphTeleconferenceDeviceAudioQuality.h b/include/MSGraphTeleconferenceDeviceAudioQuality.h new file mode 120000 index 00000000..a695948d --- /dev/null +++ b/include/MSGraphTeleconferenceDeviceAudioQuality.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeleconferenceDeviceAudioQuality.h \ No newline at end of file diff --git a/include/MSGraphTeleconferenceDeviceMediaQuality.h b/include/MSGraphTeleconferenceDeviceMediaQuality.h new file mode 120000 index 00000000..90feea43 --- /dev/null +++ b/include/MSGraphTeleconferenceDeviceMediaQuality.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeleconferenceDeviceMediaQuality.h \ No newline at end of file diff --git a/include/MSGraphTeleconferenceDeviceQuality.h b/include/MSGraphTeleconferenceDeviceQuality.h new file mode 120000 index 00000000..b8af17bd --- /dev/null +++ b/include/MSGraphTeleconferenceDeviceQuality.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeleconferenceDeviceQuality.h \ No newline at end of file diff --git a/include/MSGraphTeleconferenceDeviceScreenSharingQuality.h b/include/MSGraphTeleconferenceDeviceScreenSharingQuality.h new file mode 120000 index 00000000..261bbd40 --- /dev/null +++ b/include/MSGraphTeleconferenceDeviceScreenSharingQuality.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeleconferenceDeviceScreenSharingQuality.h \ No newline at end of file diff --git a/include/MSGraphTeleconferenceDeviceVideoQuality.h b/include/MSGraphTeleconferenceDeviceVideoQuality.h new file mode 120000 index 00000000..8a1c5bc2 --- /dev/null +++ b/include/MSGraphTeleconferenceDeviceVideoQuality.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTeleconferenceDeviceVideoQuality.h \ No newline at end of file diff --git a/include/MSGraphTermsAndConditions.h b/include/MSGraphTermsAndConditions.h new file mode 120000 index 00000000..bea6b953 --- /dev/null +++ b/include/MSGraphTermsAndConditions.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTermsAndConditions.h \ No newline at end of file diff --git a/include/MSGraphTermsAndConditionsAcceptanceStatus.h b/include/MSGraphTermsAndConditionsAcceptanceStatus.h new file mode 120000 index 00000000..6bd90e49 --- /dev/null +++ b/include/MSGraphTermsAndConditionsAcceptanceStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTermsAndConditionsAcceptanceStatus.h \ No newline at end of file diff --git a/include/MSGraphTermsAndConditionsAssignment.h b/include/MSGraphTermsAndConditionsAssignment.h new file mode 120000 index 00000000..b28bff0d --- /dev/null +++ b/include/MSGraphTermsAndConditionsAssignment.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTermsAndConditionsAssignment.h \ No newline at end of file diff --git a/include/MSGraphTermsExpiration.h b/include/MSGraphTermsExpiration.h new file mode 120000 index 00000000..2e12ff5d --- /dev/null +++ b/include/MSGraphTermsExpiration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTermsExpiration.h \ No newline at end of file diff --git a/include/MSGraphTermsOfUseContainer.h b/include/MSGraphTermsOfUseContainer.h new file mode 120000 index 00000000..2ea28dbd --- /dev/null +++ b/include/MSGraphTermsOfUseContainer.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTermsOfUseContainer.h \ No newline at end of file diff --git a/include/MSGraphTextColumn.h b/include/MSGraphTextColumn.h new file mode 120000 index 00000000..29558bdb --- /dev/null +++ b/include/MSGraphTextColumn.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTextColumn.h \ No newline at end of file diff --git a/include/MSGraphThreatAssessmentContentType.h b/include/MSGraphThreatAssessmentContentType.h new file mode 120000 index 00000000..35254af5 --- /dev/null +++ b/include/MSGraphThreatAssessmentContentType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphThreatAssessmentContentType.h \ No newline at end of file diff --git a/include/MSGraphThreatAssessmentRequest.h b/include/MSGraphThreatAssessmentRequest.h new file mode 120000 index 00000000..e56e1237 --- /dev/null +++ b/include/MSGraphThreatAssessmentRequest.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphThreatAssessmentRequest.h \ No newline at end of file diff --git a/include/MSGraphThreatAssessmentRequestSource.h b/include/MSGraphThreatAssessmentRequestSource.h new file mode 120000 index 00000000..61c11981 --- /dev/null +++ b/include/MSGraphThreatAssessmentRequestSource.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphThreatAssessmentRequestSource.h \ No newline at end of file diff --git a/include/MSGraphThreatAssessmentResult.h b/include/MSGraphThreatAssessmentResult.h new file mode 120000 index 00000000..85d072de --- /dev/null +++ b/include/MSGraphThreatAssessmentResult.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphThreatAssessmentResult.h \ No newline at end of file diff --git a/include/MSGraphThreatAssessmentResultType.h b/include/MSGraphThreatAssessmentResultType.h new file mode 120000 index 00000000..a9d67f2d --- /dev/null +++ b/include/MSGraphThreatAssessmentResultType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphThreatAssessmentResultType.h \ No newline at end of file diff --git a/include/MSGraphThreatAssessmentStatus.h b/include/MSGraphThreatAssessmentStatus.h new file mode 120000 index 00000000..45a0bffc --- /dev/null +++ b/include/MSGraphThreatAssessmentStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphThreatAssessmentStatus.h \ No newline at end of file diff --git a/include/MSGraphThreatCategory.h b/include/MSGraphThreatCategory.h new file mode 120000 index 00000000..d1b97bd9 --- /dev/null +++ b/include/MSGraphThreatCategory.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphThreatCategory.h \ No newline at end of file diff --git a/include/MSGraphThreatExpectedAssessment.h b/include/MSGraphThreatExpectedAssessment.h new file mode 120000 index 00000000..30bf3aa4 --- /dev/null +++ b/include/MSGraphThreatExpectedAssessment.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphThreatExpectedAssessment.h \ No newline at end of file diff --git a/include/MSGraphThumbnail.h b/include/MSGraphThumbnail.h new file mode 120000 index 00000000..f22edbdf --- /dev/null +++ b/include/MSGraphThumbnail.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphThumbnail.h \ No newline at end of file diff --git a/include/MSGraphThumbnailSet.h b/include/MSGraphThumbnailSet.h new file mode 120000 index 00000000..a15c75fd --- /dev/null +++ b/include/MSGraphThumbnailSet.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphThumbnailSet.h \ No newline at end of file diff --git a/include/MSGraphTimeConstraint.h b/include/MSGraphTimeConstraint.h new file mode 120000 index 00000000..79610591 --- /dev/null +++ b/include/MSGraphTimeConstraint.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTimeConstraint.h \ No newline at end of file diff --git a/include/MSGraphTimeOff.h b/include/MSGraphTimeOff.h new file mode 120000 index 00000000..3c34de49 --- /dev/null +++ b/include/MSGraphTimeOff.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTimeOff.h \ No newline at end of file diff --git a/include/MSGraphTimeOffItem.h b/include/MSGraphTimeOffItem.h new file mode 120000 index 00000000..edb2d476 --- /dev/null +++ b/include/MSGraphTimeOffItem.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTimeOffItem.h \ No newline at end of file diff --git a/include/MSGraphTimeOffReason.h b/include/MSGraphTimeOffReason.h new file mode 120000 index 00000000..87939e54 --- /dev/null +++ b/include/MSGraphTimeOffReason.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTimeOffReason.h \ No newline at end of file diff --git a/include/MSGraphTimeOffReasonIconType.h b/include/MSGraphTimeOffReasonIconType.h new file mode 120000 index 00000000..e4b50584 --- /dev/null +++ b/include/MSGraphTimeOffReasonIconType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTimeOffReasonIconType.h \ No newline at end of file diff --git a/include/MSGraphTimeOffRequest.h b/include/MSGraphTimeOffRequest.h new file mode 120000 index 00000000..603c36b0 --- /dev/null +++ b/include/MSGraphTimeOffRequest.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTimeOffRequest.h \ No newline at end of file diff --git a/include/MSGraphTimeRange.h b/include/MSGraphTimeRange.h new file mode 120000 index 00000000..06d1590f --- /dev/null +++ b/include/MSGraphTimeRange.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTimeRange.h \ No newline at end of file diff --git a/include/MSGraphTimeSlot.h b/include/MSGraphTimeSlot.h new file mode 120000 index 00000000..f95c1dd3 --- /dev/null +++ b/include/MSGraphTimeSlot.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTimeSlot.h \ No newline at end of file diff --git a/include/MSGraphTimeZoneBase.h b/include/MSGraphTimeZoneBase.h new file mode 120000 index 00000000..0f43d9d5 --- /dev/null +++ b/include/MSGraphTimeZoneBase.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTimeZoneBase.h \ No newline at end of file diff --git a/include/MSGraphTimeZoneInformation.h b/include/MSGraphTimeZoneInformation.h new file mode 120000 index 00000000..1178c19e --- /dev/null +++ b/include/MSGraphTimeZoneInformation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTimeZoneInformation.h \ No newline at end of file diff --git a/include/MSGraphTimeZoneStandard.h b/include/MSGraphTimeZoneStandard.h new file mode 120000 index 00000000..61e4eab7 --- /dev/null +++ b/include/MSGraphTimeZoneStandard.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTimeZoneStandard.h \ No newline at end of file diff --git a/include/MSGraphTodo.h b/include/MSGraphTodo.h new file mode 120000 index 00000000..1869f393 --- /dev/null +++ b/include/MSGraphTodo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTodo.h \ No newline at end of file diff --git a/include/MSGraphTodoTask.h b/include/MSGraphTodoTask.h new file mode 120000 index 00000000..87a2c394 --- /dev/null +++ b/include/MSGraphTodoTask.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTodoTask.h \ No newline at end of file diff --git a/include/MSGraphTodoTaskList.h b/include/MSGraphTodoTaskList.h new file mode 120000 index 00000000..94d047ca --- /dev/null +++ b/include/MSGraphTodoTaskList.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTodoTaskList.h \ No newline at end of file diff --git a/include/MSGraphTokenIssuancePolicy.h b/include/MSGraphTokenIssuancePolicy.h new file mode 120000 index 00000000..75642a5f --- /dev/null +++ b/include/MSGraphTokenIssuancePolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTokenIssuancePolicy.h \ No newline at end of file diff --git a/include/MSGraphTokenLifetimePolicy.h b/include/MSGraphTokenLifetimePolicy.h new file mode 120000 index 00000000..7a548d60 --- /dev/null +++ b/include/MSGraphTokenLifetimePolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTokenLifetimePolicy.h \ No newline at end of file diff --git a/include/MSGraphTokenMeetingInfo.h b/include/MSGraphTokenMeetingInfo.h new file mode 120000 index 00000000..b753786c --- /dev/null +++ b/include/MSGraphTokenMeetingInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTokenMeetingInfo.h \ No newline at end of file diff --git a/include/MSGraphTone.h b/include/MSGraphTone.h new file mode 120000 index 00000000..353e874d --- /dev/null +++ b/include/MSGraphTone.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTone.h \ No newline at end of file diff --git a/include/MSGraphToneInfo.h b/include/MSGraphToneInfo.h new file mode 120000 index 00000000..6266ae1f --- /dev/null +++ b/include/MSGraphToneInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphToneInfo.h \ No newline at end of file diff --git a/include/MSGraphTrending.h b/include/MSGraphTrending.h new file mode 120000 index 00000000..64edc067 --- /dev/null +++ b/include/MSGraphTrending.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphTrending.h \ No newline at end of file diff --git a/include/MSGraphUnifiedRoleAssignment.h b/include/MSGraphUnifiedRoleAssignment.h new file mode 120000 index 00000000..7434ae58 --- /dev/null +++ b/include/MSGraphUnifiedRoleAssignment.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphUnifiedRoleAssignment.h \ No newline at end of file diff --git a/include/MSGraphUnifiedRoleDefinition.h b/include/MSGraphUnifiedRoleDefinition.h new file mode 120000 index 00000000..c1736b3e --- /dev/null +++ b/include/MSGraphUnifiedRoleDefinition.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphUnifiedRoleDefinition.h \ No newline at end of file diff --git a/include/MSGraphUnifiedRolePermission.h b/include/MSGraphUnifiedRolePermission.h new file mode 120000 index 00000000..2a5e2c13 --- /dev/null +++ b/include/MSGraphUnifiedRolePermission.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphUnifiedRolePermission.h \ No newline at end of file diff --git a/include/MSGraphUnmuteParticipantOperation.h b/include/MSGraphUnmuteParticipantOperation.h new file mode 120000 index 00000000..c071424a --- /dev/null +++ b/include/MSGraphUnmuteParticipantOperation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphUnmuteParticipantOperation.h \ No newline at end of file diff --git a/include/MSGraphUpdateRecordingStatusOperation.h b/include/MSGraphUpdateRecordingStatusOperation.h new file mode 120000 index 00000000..5b65afad --- /dev/null +++ b/include/MSGraphUpdateRecordingStatusOperation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphUpdateRecordingStatusOperation.h \ No newline at end of file diff --git a/include/MSGraphUpdateWindowsDeviceAccountActionParameter.h b/include/MSGraphUpdateWindowsDeviceAccountActionParameter.h new file mode 120000 index 00000000..ee56372b --- /dev/null +++ b/include/MSGraphUpdateWindowsDeviceAccountActionParameter.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphUpdateWindowsDeviceAccountActionParameter.h \ No newline at end of file diff --git a/include/MSGraphUploadSession.h b/include/MSGraphUploadSession.h new file mode 120000 index 00000000..42210b62 --- /dev/null +++ b/include/MSGraphUploadSession.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphUploadSession.h \ No newline at end of file diff --git a/include/MSGraphUriClickSecurityState.h b/include/MSGraphUriClickSecurityState.h new file mode 120000 index 00000000..6027b055 --- /dev/null +++ b/include/MSGraphUriClickSecurityState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphUriClickSecurityState.h \ No newline at end of file diff --git a/include/MSGraphUrlAssessmentRequest.h b/include/MSGraphUrlAssessmentRequest.h new file mode 120000 index 00000000..26df602f --- /dev/null +++ b/include/MSGraphUrlAssessmentRequest.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphUrlAssessmentRequest.h \ No newline at end of file diff --git a/include/MSGraphUsageDetails.h b/include/MSGraphUsageDetails.h new file mode 120000 index 00000000..2d59d167 --- /dev/null +++ b/include/MSGraphUsageDetails.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphUsageDetails.h \ No newline at end of file diff --git a/include/MSGraphUsedInsight.h b/include/MSGraphUsedInsight.h new file mode 120000 index 00000000..6d47a110 --- /dev/null +++ b/include/MSGraphUsedInsight.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphUsedInsight.h \ No newline at end of file diff --git a/include/MSGraphUser.h b/include/MSGraphUser.h new file mode 120000 index 00000000..fa92760c --- /dev/null +++ b/include/MSGraphUser.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphUser.h \ No newline at end of file diff --git a/include/MSGraphUserAccountSecurityType.h b/include/MSGraphUserAccountSecurityType.h new file mode 120000 index 00000000..3e8b20bb --- /dev/null +++ b/include/MSGraphUserAccountSecurityType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphUserAccountSecurityType.h \ No newline at end of file diff --git a/include/MSGraphUserActivity.h b/include/MSGraphUserActivity.h new file mode 120000 index 00000000..14d693f4 --- /dev/null +++ b/include/MSGraphUserActivity.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphUserActivity.h \ No newline at end of file diff --git a/include/MSGraphUserConsentRequest.h b/include/MSGraphUserConsentRequest.h new file mode 120000 index 00000000..70373936 --- /dev/null +++ b/include/MSGraphUserConsentRequest.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphUserConsentRequest.h \ No newline at end of file diff --git a/include/MSGraphUserIdentity.h b/include/MSGraphUserIdentity.h new file mode 120000 index 00000000..21d189ec --- /dev/null +++ b/include/MSGraphUserIdentity.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphUserIdentity.h \ No newline at end of file diff --git a/include/MSGraphUserInstallStateSummary.h b/include/MSGraphUserInstallStateSummary.h new file mode 120000 index 00000000..3b73b9ab --- /dev/null +++ b/include/MSGraphUserInstallStateSummary.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphUserInstallStateSummary.h \ No newline at end of file diff --git a/include/MSGraphUserScopeTeamsAppInstallation.h b/include/MSGraphUserScopeTeamsAppInstallation.h new file mode 120000 index 00000000..8938ca2d --- /dev/null +++ b/include/MSGraphUserScopeTeamsAppInstallation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphUserScopeTeamsAppInstallation.h \ No newline at end of file diff --git a/include/MSGraphUserSecurityState.h b/include/MSGraphUserSecurityState.h new file mode 120000 index 00000000..6f9af9fd --- /dev/null +++ b/include/MSGraphUserSecurityState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphUserSecurityState.h \ No newline at end of file diff --git a/include/MSGraphUserSettings.h b/include/MSGraphUserSettings.h new file mode 120000 index 00000000..9772e3d7 --- /dev/null +++ b/include/MSGraphUserSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphUserSettings.h \ No newline at end of file diff --git a/include/MSGraphUserTeamwork.h b/include/MSGraphUserTeamwork.h new file mode 120000 index 00000000..87ead54e --- /dev/null +++ b/include/MSGraphUserTeamwork.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphUserTeamwork.h \ No newline at end of file diff --git a/include/MSGraphVerifiedDomain.h b/include/MSGraphVerifiedDomain.h new file mode 120000 index 00000000..70d453b0 --- /dev/null +++ b/include/MSGraphVerifiedDomain.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphVerifiedDomain.h \ No newline at end of file diff --git a/include/MSGraphVideo.h b/include/MSGraphVideo.h new file mode 120000 index 00000000..3cf1eccc --- /dev/null +++ b/include/MSGraphVideo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphVideo.h \ No newline at end of file diff --git a/include/MSGraphVisibilitySetting.h b/include/MSGraphVisibilitySetting.h new file mode 120000 index 00000000..37bb3de1 --- /dev/null +++ b/include/MSGraphVisibilitySetting.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphVisibilitySetting.h \ No newline at end of file diff --git a/include/MSGraphVisualInfo.h b/include/MSGraphVisualInfo.h new file mode 120000 index 00000000..1c74b811 --- /dev/null +++ b/include/MSGraphVisualInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphVisualInfo.h \ No newline at end of file diff --git a/include/MSGraphVppLicensingType.h b/include/MSGraphVppLicensingType.h new file mode 120000 index 00000000..3455d63b --- /dev/null +++ b/include/MSGraphVppLicensingType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphVppLicensingType.h \ No newline at end of file diff --git a/include/MSGraphVppToken.h b/include/MSGraphVppToken.h new file mode 120000 index 00000000..a89e3689 --- /dev/null +++ b/include/MSGraphVppToken.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphVppToken.h \ No newline at end of file diff --git a/include/MSGraphVppTokenAccountType.h b/include/MSGraphVppTokenAccountType.h new file mode 120000 index 00000000..800cba9d --- /dev/null +++ b/include/MSGraphVppTokenAccountType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphVppTokenAccountType.h \ No newline at end of file diff --git a/include/MSGraphVppTokenState.h b/include/MSGraphVppTokenState.h new file mode 120000 index 00000000..d40f1b07 --- /dev/null +++ b/include/MSGraphVppTokenState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphVppTokenState.h \ No newline at end of file diff --git a/include/MSGraphVppTokenSyncStatus.h b/include/MSGraphVppTokenSyncStatus.h new file mode 120000 index 00000000..b7d2fb37 --- /dev/null +++ b/include/MSGraphVppTokenSyncStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphVppTokenSyncStatus.h \ No newline at end of file diff --git a/include/MSGraphVulnerabilityState.h b/include/MSGraphVulnerabilityState.h new file mode 120000 index 00000000..7249628a --- /dev/null +++ b/include/MSGraphVulnerabilityState.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphVulnerabilityState.h \ No newline at end of file diff --git a/include/MSGraphWebApp.h b/include/MSGraphWebApp.h new file mode 120000 index 00000000..b450b813 --- /dev/null +++ b/include/MSGraphWebApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWebApp.h \ No newline at end of file diff --git a/include/MSGraphWebApplication.h b/include/MSGraphWebApplication.h new file mode 120000 index 00000000..9fd7cc6a --- /dev/null +++ b/include/MSGraphWebApplication.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWebApplication.h \ No newline at end of file diff --git a/include/MSGraphWebBrowserCookieSettings.h b/include/MSGraphWebBrowserCookieSettings.h new file mode 120000 index 00000000..c2d9b2cf --- /dev/null +++ b/include/MSGraphWebBrowserCookieSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWebBrowserCookieSettings.h \ No newline at end of file diff --git a/include/MSGraphWebsite.h b/include/MSGraphWebsite.h new file mode 120000 index 00000000..a309f5aa --- /dev/null +++ b/include/MSGraphWebsite.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWebsite.h \ No newline at end of file diff --git a/include/MSGraphWebsiteType.h b/include/MSGraphWebsiteType.h new file mode 120000 index 00000000..0abfd0ad --- /dev/null +++ b/include/MSGraphWebsiteType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWebsiteType.h \ No newline at end of file diff --git a/include/MSGraphWeekIndex.h b/include/MSGraphWeekIndex.h new file mode 120000 index 00000000..7e149d44 --- /dev/null +++ b/include/MSGraphWeekIndex.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWeekIndex.h \ No newline at end of file diff --git a/include/MSGraphWeeklySchedule.h b/include/MSGraphWeeklySchedule.h new file mode 120000 index 00000000..19e0a7ad --- /dev/null +++ b/include/MSGraphWeeklySchedule.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWeeklySchedule.h \ No newline at end of file diff --git a/include/MSGraphWelcomeScreenMeetingInformation.h b/include/MSGraphWelcomeScreenMeetingInformation.h new file mode 120000 index 00000000..4aec4dc2 --- /dev/null +++ b/include/MSGraphWelcomeScreenMeetingInformation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWelcomeScreenMeetingInformation.h \ No newline at end of file diff --git a/include/MSGraphWellknownListName.h b/include/MSGraphWellknownListName.h new file mode 120000 index 00000000..61ff44e8 --- /dev/null +++ b/include/MSGraphWellknownListName.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWellknownListName.h \ No newline at end of file diff --git a/include/MSGraphWin32LobApp.h b/include/MSGraphWin32LobApp.h new file mode 120000 index 00000000..dec876a7 --- /dev/null +++ b/include/MSGraphWin32LobApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWin32LobApp.h \ No newline at end of file diff --git a/include/MSGraphWin32LobAppAssignmentSettings.h b/include/MSGraphWin32LobAppAssignmentSettings.h new file mode 120000 index 00000000..c700f4b7 --- /dev/null +++ b/include/MSGraphWin32LobAppAssignmentSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWin32LobAppAssignmentSettings.h \ No newline at end of file diff --git a/include/MSGraphWin32LobAppFileSystemOperationType.h b/include/MSGraphWin32LobAppFileSystemOperationType.h new file mode 120000 index 00000000..a03950d5 --- /dev/null +++ b/include/MSGraphWin32LobAppFileSystemOperationType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWin32LobAppFileSystemOperationType.h \ No newline at end of file diff --git a/include/MSGraphWin32LobAppFileSystemRule.h b/include/MSGraphWin32LobAppFileSystemRule.h new file mode 120000 index 00000000..c64ee983 --- /dev/null +++ b/include/MSGraphWin32LobAppFileSystemRule.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWin32LobAppFileSystemRule.h \ No newline at end of file diff --git a/include/MSGraphWin32LobAppInstallExperience.h b/include/MSGraphWin32LobAppInstallExperience.h new file mode 120000 index 00000000..628015b0 --- /dev/null +++ b/include/MSGraphWin32LobAppInstallExperience.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWin32LobAppInstallExperience.h \ No newline at end of file diff --git a/include/MSGraphWin32LobAppMsiInformation.h b/include/MSGraphWin32LobAppMsiInformation.h new file mode 120000 index 00000000..09085d30 --- /dev/null +++ b/include/MSGraphWin32LobAppMsiInformation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWin32LobAppMsiInformation.h \ No newline at end of file diff --git a/include/MSGraphWin32LobAppMsiPackageType.h b/include/MSGraphWin32LobAppMsiPackageType.h new file mode 120000 index 00000000..84955576 --- /dev/null +++ b/include/MSGraphWin32LobAppMsiPackageType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWin32LobAppMsiPackageType.h \ No newline at end of file diff --git a/include/MSGraphWin32LobAppNotification.h b/include/MSGraphWin32LobAppNotification.h new file mode 120000 index 00000000..f9207b8d --- /dev/null +++ b/include/MSGraphWin32LobAppNotification.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWin32LobAppNotification.h \ No newline at end of file diff --git a/include/MSGraphWin32LobAppPowerShellScriptRule.h b/include/MSGraphWin32LobAppPowerShellScriptRule.h new file mode 120000 index 00000000..16c59c4e --- /dev/null +++ b/include/MSGraphWin32LobAppPowerShellScriptRule.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWin32LobAppPowerShellScriptRule.h \ No newline at end of file diff --git a/include/MSGraphWin32LobAppPowerShellScriptRuleOperationType.h b/include/MSGraphWin32LobAppPowerShellScriptRuleOperationType.h new file mode 120000 index 00000000..26a69940 --- /dev/null +++ b/include/MSGraphWin32LobAppPowerShellScriptRuleOperationType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWin32LobAppPowerShellScriptRuleOperationType.h \ No newline at end of file diff --git a/include/MSGraphWin32LobAppProductCodeRule.h b/include/MSGraphWin32LobAppProductCodeRule.h new file mode 120000 index 00000000..381efde2 --- /dev/null +++ b/include/MSGraphWin32LobAppProductCodeRule.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWin32LobAppProductCodeRule.h \ No newline at end of file diff --git a/include/MSGraphWin32LobAppRegistryRule.h b/include/MSGraphWin32LobAppRegistryRule.h new file mode 120000 index 00000000..1bc37b9b --- /dev/null +++ b/include/MSGraphWin32LobAppRegistryRule.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWin32LobAppRegistryRule.h \ No newline at end of file diff --git a/include/MSGraphWin32LobAppRegistryRuleOperationType.h b/include/MSGraphWin32LobAppRegistryRuleOperationType.h new file mode 120000 index 00000000..85a88a74 --- /dev/null +++ b/include/MSGraphWin32LobAppRegistryRuleOperationType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWin32LobAppRegistryRuleOperationType.h \ No newline at end of file diff --git a/include/MSGraphWin32LobAppRestartBehavior.h b/include/MSGraphWin32LobAppRestartBehavior.h new file mode 120000 index 00000000..3643ff3c --- /dev/null +++ b/include/MSGraphWin32LobAppRestartBehavior.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWin32LobAppRestartBehavior.h \ No newline at end of file diff --git a/include/MSGraphWin32LobAppRestartSettings.h b/include/MSGraphWin32LobAppRestartSettings.h new file mode 120000 index 00000000..7c5500cb --- /dev/null +++ b/include/MSGraphWin32LobAppRestartSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWin32LobAppRestartSettings.h \ No newline at end of file diff --git a/include/MSGraphWin32LobAppReturnCode.h b/include/MSGraphWin32LobAppReturnCode.h new file mode 120000 index 00000000..6b30e3b7 --- /dev/null +++ b/include/MSGraphWin32LobAppReturnCode.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWin32LobAppReturnCode.h \ No newline at end of file diff --git a/include/MSGraphWin32LobAppReturnCodeType.h b/include/MSGraphWin32LobAppReturnCodeType.h new file mode 120000 index 00000000..e0437680 --- /dev/null +++ b/include/MSGraphWin32LobAppReturnCodeType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWin32LobAppReturnCodeType.h \ No newline at end of file diff --git a/include/MSGraphWin32LobAppRule.h b/include/MSGraphWin32LobAppRule.h new file mode 120000 index 00000000..3fe71a8b --- /dev/null +++ b/include/MSGraphWin32LobAppRule.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWin32LobAppRule.h \ No newline at end of file diff --git a/include/MSGraphWin32LobAppRuleOperator.h b/include/MSGraphWin32LobAppRuleOperator.h new file mode 120000 index 00000000..4bc66935 --- /dev/null +++ b/include/MSGraphWin32LobAppRuleOperator.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWin32LobAppRuleOperator.h \ No newline at end of file diff --git a/include/MSGraphWin32LobAppRuleType.h b/include/MSGraphWin32LobAppRuleType.h new file mode 120000 index 00000000..dd1ece2c --- /dev/null +++ b/include/MSGraphWin32LobAppRuleType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWin32LobAppRuleType.h \ No newline at end of file diff --git a/include/MSGraphWindows10CompliancePolicy.h b/include/MSGraphWindows10CompliancePolicy.h new file mode 120000 index 00000000..9844d851 --- /dev/null +++ b/include/MSGraphWindows10CompliancePolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindows10CompliancePolicy.h \ No newline at end of file diff --git a/include/MSGraphWindows10CustomConfiguration.h b/include/MSGraphWindows10CustomConfiguration.h new file mode 120000 index 00000000..b7cd075f --- /dev/null +++ b/include/MSGraphWindows10CustomConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindows10CustomConfiguration.h \ No newline at end of file diff --git a/include/MSGraphWindows10EditionType.h b/include/MSGraphWindows10EditionType.h new file mode 120000 index 00000000..66169b8e --- /dev/null +++ b/include/MSGraphWindows10EditionType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindows10EditionType.h \ No newline at end of file diff --git a/include/MSGraphWindows10EndpointProtectionConfiguration.h b/include/MSGraphWindows10EndpointProtectionConfiguration.h new file mode 120000 index 00000000..ad79c3c9 --- /dev/null +++ b/include/MSGraphWindows10EndpointProtectionConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindows10EndpointProtectionConfiguration.h \ No newline at end of file diff --git a/include/MSGraphWindows10EnterpriseModernAppManagementConfiguration.h b/include/MSGraphWindows10EnterpriseModernAppManagementConfiguration.h new file mode 120000 index 00000000..d665675b --- /dev/null +++ b/include/MSGraphWindows10EnterpriseModernAppManagementConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindows10EnterpriseModernAppManagementConfiguration.h \ No newline at end of file diff --git a/include/MSGraphWindows10GeneralConfiguration.h b/include/MSGraphWindows10GeneralConfiguration.h new file mode 120000 index 00000000..ffe291f4 --- /dev/null +++ b/include/MSGraphWindows10GeneralConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindows10GeneralConfiguration.h \ No newline at end of file diff --git a/include/MSGraphWindows10MobileCompliancePolicy.h b/include/MSGraphWindows10MobileCompliancePolicy.h new file mode 120000 index 00000000..7d5ec053 --- /dev/null +++ b/include/MSGraphWindows10MobileCompliancePolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindows10MobileCompliancePolicy.h \ No newline at end of file diff --git a/include/MSGraphWindows10NetworkProxyServer.h b/include/MSGraphWindows10NetworkProxyServer.h new file mode 120000 index 00000000..d887bd99 --- /dev/null +++ b/include/MSGraphWindows10NetworkProxyServer.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindows10NetworkProxyServer.h \ No newline at end of file diff --git a/include/MSGraphWindows10SecureAssessmentConfiguration.h b/include/MSGraphWindows10SecureAssessmentConfiguration.h new file mode 120000 index 00000000..ba922a48 --- /dev/null +++ b/include/MSGraphWindows10SecureAssessmentConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindows10SecureAssessmentConfiguration.h \ No newline at end of file diff --git a/include/MSGraphWindows10TeamGeneralConfiguration.h b/include/MSGraphWindows10TeamGeneralConfiguration.h new file mode 120000 index 00000000..1bc8ce6e --- /dev/null +++ b/include/MSGraphWindows10TeamGeneralConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindows10TeamGeneralConfiguration.h \ No newline at end of file diff --git a/include/MSGraphWindows81CompliancePolicy.h b/include/MSGraphWindows81CompliancePolicy.h new file mode 120000 index 00000000..a96964a1 --- /dev/null +++ b/include/MSGraphWindows81CompliancePolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindows81CompliancePolicy.h \ No newline at end of file diff --git a/include/MSGraphWindows81GeneralConfiguration.h b/include/MSGraphWindows81GeneralConfiguration.h new file mode 120000 index 00000000..65db34cc --- /dev/null +++ b/include/MSGraphWindows81GeneralConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindows81GeneralConfiguration.h \ No newline at end of file diff --git a/include/MSGraphWindowsArchitecture.h b/include/MSGraphWindowsArchitecture.h new file mode 120000 index 00000000..6b78c60f --- /dev/null +++ b/include/MSGraphWindowsArchitecture.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsArchitecture.h \ No newline at end of file diff --git a/include/MSGraphWindowsDefenderAdvancedThreatProtectionConfiguration.h b/include/MSGraphWindowsDefenderAdvancedThreatProtectionConfiguration.h new file mode 120000 index 00000000..d0c6e8c2 --- /dev/null +++ b/include/MSGraphWindowsDefenderAdvancedThreatProtectionConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsDefenderAdvancedThreatProtectionConfiguration.h \ No newline at end of file diff --git a/include/MSGraphWindowsDefenderScanActionResult.h b/include/MSGraphWindowsDefenderScanActionResult.h new file mode 120000 index 00000000..5911b035 --- /dev/null +++ b/include/MSGraphWindowsDefenderScanActionResult.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsDefenderScanActionResult.h \ No newline at end of file diff --git a/include/MSGraphWindowsDeliveryOptimizationMode.h b/include/MSGraphWindowsDeliveryOptimizationMode.h new file mode 120000 index 00000000..890c4543 --- /dev/null +++ b/include/MSGraphWindowsDeliveryOptimizationMode.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsDeliveryOptimizationMode.h \ No newline at end of file diff --git a/include/MSGraphWindowsDeviceADAccount.h b/include/MSGraphWindowsDeviceADAccount.h new file mode 120000 index 00000000..b657037a --- /dev/null +++ b/include/MSGraphWindowsDeviceADAccount.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsDeviceADAccount.h \ No newline at end of file diff --git a/include/MSGraphWindowsDeviceAccount.h b/include/MSGraphWindowsDeviceAccount.h new file mode 120000 index 00000000..e9710ffd --- /dev/null +++ b/include/MSGraphWindowsDeviceAccount.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsDeviceAccount.h \ No newline at end of file diff --git a/include/MSGraphWindowsDeviceAzureADAccount.h b/include/MSGraphWindowsDeviceAzureADAccount.h new file mode 120000 index 00000000..1563789d --- /dev/null +++ b/include/MSGraphWindowsDeviceAzureADAccount.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsDeviceAzureADAccount.h \ No newline at end of file diff --git a/include/MSGraphWindowsDeviceType.h b/include/MSGraphWindowsDeviceType.h new file mode 120000 index 00000000..b6fea362 --- /dev/null +++ b/include/MSGraphWindowsDeviceType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsDeviceType.h \ No newline at end of file diff --git a/include/MSGraphWindowsFirewallNetworkProfile.h b/include/MSGraphWindowsFirewallNetworkProfile.h new file mode 120000 index 00000000..9430dafe --- /dev/null +++ b/include/MSGraphWindowsFirewallNetworkProfile.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsFirewallNetworkProfile.h \ No newline at end of file diff --git a/include/MSGraphWindowsHelloForBusinessAuthenticationMethod.h b/include/MSGraphWindowsHelloForBusinessAuthenticationMethod.h new file mode 120000 index 00000000..1ad3f6fc --- /dev/null +++ b/include/MSGraphWindowsHelloForBusinessAuthenticationMethod.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsHelloForBusinessAuthenticationMethod.h \ No newline at end of file diff --git a/include/MSGraphWindowsHelloForBusinessPinUsage.h b/include/MSGraphWindowsHelloForBusinessPinUsage.h new file mode 120000 index 00000000..06579d66 --- /dev/null +++ b/include/MSGraphWindowsHelloForBusinessPinUsage.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsHelloForBusinessPinUsage.h \ No newline at end of file diff --git a/include/MSGraphWindowsInformationProtection.h b/include/MSGraphWindowsInformationProtection.h new file mode 120000 index 00000000..19277a9d --- /dev/null +++ b/include/MSGraphWindowsInformationProtection.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsInformationProtection.h \ No newline at end of file diff --git a/include/MSGraphWindowsInformationProtectionApp.h b/include/MSGraphWindowsInformationProtectionApp.h new file mode 120000 index 00000000..a0795ad6 --- /dev/null +++ b/include/MSGraphWindowsInformationProtectionApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsInformationProtectionApp.h \ No newline at end of file diff --git a/include/MSGraphWindowsInformationProtectionAppLearningSummary.h b/include/MSGraphWindowsInformationProtectionAppLearningSummary.h new file mode 120000 index 00000000..420d09cf --- /dev/null +++ b/include/MSGraphWindowsInformationProtectionAppLearningSummary.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsInformationProtectionAppLearningSummary.h \ No newline at end of file diff --git a/include/MSGraphWindowsInformationProtectionAppLockerFile.h b/include/MSGraphWindowsInformationProtectionAppLockerFile.h new file mode 120000 index 00000000..416a9a76 --- /dev/null +++ b/include/MSGraphWindowsInformationProtectionAppLockerFile.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsInformationProtectionAppLockerFile.h \ No newline at end of file diff --git a/include/MSGraphWindowsInformationProtectionDataRecoveryCertificate.h b/include/MSGraphWindowsInformationProtectionDataRecoveryCertificate.h new file mode 120000 index 00000000..1c98348b --- /dev/null +++ b/include/MSGraphWindowsInformationProtectionDataRecoveryCertificate.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsInformationProtectionDataRecoveryCertificate.h \ No newline at end of file diff --git a/include/MSGraphWindowsInformationProtectionDesktopApp.h b/include/MSGraphWindowsInformationProtectionDesktopApp.h new file mode 120000 index 00000000..acfbacd4 --- /dev/null +++ b/include/MSGraphWindowsInformationProtectionDesktopApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsInformationProtectionDesktopApp.h \ No newline at end of file diff --git a/include/MSGraphWindowsInformationProtectionEnforcementLevel.h b/include/MSGraphWindowsInformationProtectionEnforcementLevel.h new file mode 120000 index 00000000..38d13a78 --- /dev/null +++ b/include/MSGraphWindowsInformationProtectionEnforcementLevel.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsInformationProtectionEnforcementLevel.h \ No newline at end of file diff --git a/include/MSGraphWindowsInformationProtectionIPRangeCollection.h b/include/MSGraphWindowsInformationProtectionIPRangeCollection.h new file mode 120000 index 00000000..45c77552 --- /dev/null +++ b/include/MSGraphWindowsInformationProtectionIPRangeCollection.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsInformationProtectionIPRangeCollection.h \ No newline at end of file diff --git a/include/MSGraphWindowsInformationProtectionNetworkLearningSummary.h b/include/MSGraphWindowsInformationProtectionNetworkLearningSummary.h new file mode 120000 index 00000000..e1b80dd7 --- /dev/null +++ b/include/MSGraphWindowsInformationProtectionNetworkLearningSummary.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsInformationProtectionNetworkLearningSummary.h \ No newline at end of file diff --git a/include/MSGraphWindowsInformationProtectionPinCharacterRequirements.h b/include/MSGraphWindowsInformationProtectionPinCharacterRequirements.h new file mode 120000 index 00000000..50ab8174 --- /dev/null +++ b/include/MSGraphWindowsInformationProtectionPinCharacterRequirements.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsInformationProtectionPinCharacterRequirements.h \ No newline at end of file diff --git a/include/MSGraphWindowsInformationProtectionPolicy.h b/include/MSGraphWindowsInformationProtectionPolicy.h new file mode 120000 index 00000000..fa216437 --- /dev/null +++ b/include/MSGraphWindowsInformationProtectionPolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsInformationProtectionPolicy.h \ No newline at end of file diff --git a/include/MSGraphWindowsInformationProtectionProxiedDomainCollection.h b/include/MSGraphWindowsInformationProtectionProxiedDomainCollection.h new file mode 120000 index 00000000..852d2602 --- /dev/null +++ b/include/MSGraphWindowsInformationProtectionProxiedDomainCollection.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsInformationProtectionProxiedDomainCollection.h \ No newline at end of file diff --git a/include/MSGraphWindowsInformationProtectionResourceCollection.h b/include/MSGraphWindowsInformationProtectionResourceCollection.h new file mode 120000 index 00000000..5f45b80a --- /dev/null +++ b/include/MSGraphWindowsInformationProtectionResourceCollection.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsInformationProtectionResourceCollection.h \ No newline at end of file diff --git a/include/MSGraphWindowsInformationProtectionStoreApp.h b/include/MSGraphWindowsInformationProtectionStoreApp.h new file mode 120000 index 00000000..29c4b3e5 --- /dev/null +++ b/include/MSGraphWindowsInformationProtectionStoreApp.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsInformationProtectionStoreApp.h \ No newline at end of file diff --git a/include/MSGraphWindowsMinimumOperatingSystem.h b/include/MSGraphWindowsMinimumOperatingSystem.h new file mode 120000 index 00000000..ce55d821 --- /dev/null +++ b/include/MSGraphWindowsMinimumOperatingSystem.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsMinimumOperatingSystem.h \ No newline at end of file diff --git a/include/MSGraphWindowsMobileMSI.h b/include/MSGraphWindowsMobileMSI.h new file mode 120000 index 00000000..4fd55c7a --- /dev/null +++ b/include/MSGraphWindowsMobileMSI.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsMobileMSI.h \ No newline at end of file diff --git a/include/MSGraphWindowsPhone81CompliancePolicy.h b/include/MSGraphWindowsPhone81CompliancePolicy.h new file mode 120000 index 00000000..d46c1e0b --- /dev/null +++ b/include/MSGraphWindowsPhone81CompliancePolicy.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsPhone81CompliancePolicy.h \ No newline at end of file diff --git a/include/MSGraphWindowsPhone81CustomConfiguration.h b/include/MSGraphWindowsPhone81CustomConfiguration.h new file mode 120000 index 00000000..482f3611 --- /dev/null +++ b/include/MSGraphWindowsPhone81CustomConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsPhone81CustomConfiguration.h \ No newline at end of file diff --git a/include/MSGraphWindowsPhone81GeneralConfiguration.h b/include/MSGraphWindowsPhone81GeneralConfiguration.h new file mode 120000 index 00000000..2fc96597 --- /dev/null +++ b/include/MSGraphWindowsPhone81GeneralConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsPhone81GeneralConfiguration.h \ No newline at end of file diff --git a/include/MSGraphWindowsSpotlightEnablementSettings.h b/include/MSGraphWindowsSpotlightEnablementSettings.h new file mode 120000 index 00000000..a6f1f5d2 --- /dev/null +++ b/include/MSGraphWindowsSpotlightEnablementSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsSpotlightEnablementSettings.h \ No newline at end of file diff --git a/include/MSGraphWindowsStartMenuAppListVisibilityType.h b/include/MSGraphWindowsStartMenuAppListVisibilityType.h new file mode 120000 index 00000000..cac1d1f5 --- /dev/null +++ b/include/MSGraphWindowsStartMenuAppListVisibilityType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsStartMenuAppListVisibilityType.h \ No newline at end of file diff --git a/include/MSGraphWindowsStartMenuModeType.h b/include/MSGraphWindowsStartMenuModeType.h new file mode 120000 index 00000000..c594b7d0 --- /dev/null +++ b/include/MSGraphWindowsStartMenuModeType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsStartMenuModeType.h \ No newline at end of file diff --git a/include/MSGraphWindowsUniversalAppX.h b/include/MSGraphWindowsUniversalAppX.h new file mode 120000 index 00000000..bc9e4662 --- /dev/null +++ b/include/MSGraphWindowsUniversalAppX.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsUniversalAppX.h \ No newline at end of file diff --git a/include/MSGraphWindowsUpdateActiveHoursInstall.h b/include/MSGraphWindowsUpdateActiveHoursInstall.h new file mode 120000 index 00000000..f426d309 --- /dev/null +++ b/include/MSGraphWindowsUpdateActiveHoursInstall.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsUpdateActiveHoursInstall.h \ No newline at end of file diff --git a/include/MSGraphWindowsUpdateForBusinessConfiguration.h b/include/MSGraphWindowsUpdateForBusinessConfiguration.h new file mode 120000 index 00000000..49730c35 --- /dev/null +++ b/include/MSGraphWindowsUpdateForBusinessConfiguration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsUpdateForBusinessConfiguration.h \ No newline at end of file diff --git a/include/MSGraphWindowsUpdateInstallScheduleType.h b/include/MSGraphWindowsUpdateInstallScheduleType.h new file mode 120000 index 00000000..00f82b50 --- /dev/null +++ b/include/MSGraphWindowsUpdateInstallScheduleType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsUpdateInstallScheduleType.h \ No newline at end of file diff --git a/include/MSGraphWindowsUpdateScheduledInstall.h b/include/MSGraphWindowsUpdateScheduledInstall.h new file mode 120000 index 00000000..ffd183b2 --- /dev/null +++ b/include/MSGraphWindowsUpdateScheduledInstall.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsUpdateScheduledInstall.h \ No newline at end of file diff --git a/include/MSGraphWindowsUpdateType.h b/include/MSGraphWindowsUpdateType.h new file mode 120000 index 00000000..9d7c01fd --- /dev/null +++ b/include/MSGraphWindowsUpdateType.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsUpdateType.h \ No newline at end of file diff --git a/include/MSGraphWindowsUserAccountControlSettings.h b/include/MSGraphWindowsUserAccountControlSettings.h new file mode 120000 index 00000000..9803910a --- /dev/null +++ b/include/MSGraphWindowsUserAccountControlSettings.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWindowsUserAccountControlSettings.h \ No newline at end of file diff --git a/include/MSGraphWorkbook.h b/include/MSGraphWorkbook.h new file mode 120000 index 00000000..2a7fd2a8 --- /dev/null +++ b/include/MSGraphWorkbook.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbook.h \ No newline at end of file diff --git a/include/MSGraphWorkbookApplication.h b/include/MSGraphWorkbookApplication.h new file mode 120000 index 00000000..18a5d62b --- /dev/null +++ b/include/MSGraphWorkbookApplication.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookApplication.h \ No newline at end of file diff --git a/include/MSGraphWorkbookChart.h b/include/MSGraphWorkbookChart.h new file mode 120000 index 00000000..0489e4d5 --- /dev/null +++ b/include/MSGraphWorkbookChart.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookChart.h \ No newline at end of file diff --git a/include/MSGraphWorkbookChartAreaFormat.h b/include/MSGraphWorkbookChartAreaFormat.h new file mode 120000 index 00000000..8974b255 --- /dev/null +++ b/include/MSGraphWorkbookChartAreaFormat.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookChartAreaFormat.h \ No newline at end of file diff --git a/include/MSGraphWorkbookChartAxes.h b/include/MSGraphWorkbookChartAxes.h new file mode 120000 index 00000000..8af40b78 --- /dev/null +++ b/include/MSGraphWorkbookChartAxes.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookChartAxes.h \ No newline at end of file diff --git a/include/MSGraphWorkbookChartAxis.h b/include/MSGraphWorkbookChartAxis.h new file mode 120000 index 00000000..3b02a20d --- /dev/null +++ b/include/MSGraphWorkbookChartAxis.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookChartAxis.h \ No newline at end of file diff --git a/include/MSGraphWorkbookChartAxisFormat.h b/include/MSGraphWorkbookChartAxisFormat.h new file mode 120000 index 00000000..d8640a24 --- /dev/null +++ b/include/MSGraphWorkbookChartAxisFormat.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookChartAxisFormat.h \ No newline at end of file diff --git a/include/MSGraphWorkbookChartAxisTitle.h b/include/MSGraphWorkbookChartAxisTitle.h new file mode 120000 index 00000000..5ef05388 --- /dev/null +++ b/include/MSGraphWorkbookChartAxisTitle.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookChartAxisTitle.h \ No newline at end of file diff --git a/include/MSGraphWorkbookChartAxisTitleFormat.h b/include/MSGraphWorkbookChartAxisTitleFormat.h new file mode 120000 index 00000000..fa33eb0b --- /dev/null +++ b/include/MSGraphWorkbookChartAxisTitleFormat.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookChartAxisTitleFormat.h \ No newline at end of file diff --git a/include/MSGraphWorkbookChartDataLabelFormat.h b/include/MSGraphWorkbookChartDataLabelFormat.h new file mode 120000 index 00000000..fe419c03 --- /dev/null +++ b/include/MSGraphWorkbookChartDataLabelFormat.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookChartDataLabelFormat.h \ No newline at end of file diff --git a/include/MSGraphWorkbookChartDataLabels.h b/include/MSGraphWorkbookChartDataLabels.h new file mode 120000 index 00000000..2475235c --- /dev/null +++ b/include/MSGraphWorkbookChartDataLabels.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookChartDataLabels.h \ No newline at end of file diff --git a/include/MSGraphWorkbookChartFill.h b/include/MSGraphWorkbookChartFill.h new file mode 120000 index 00000000..533ae350 --- /dev/null +++ b/include/MSGraphWorkbookChartFill.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookChartFill.h \ No newline at end of file diff --git a/include/MSGraphWorkbookChartFont.h b/include/MSGraphWorkbookChartFont.h new file mode 120000 index 00000000..7e3ff0be --- /dev/null +++ b/include/MSGraphWorkbookChartFont.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookChartFont.h \ No newline at end of file diff --git a/include/MSGraphWorkbookChartGridlines.h b/include/MSGraphWorkbookChartGridlines.h new file mode 120000 index 00000000..7320b54e --- /dev/null +++ b/include/MSGraphWorkbookChartGridlines.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookChartGridlines.h \ No newline at end of file diff --git a/include/MSGraphWorkbookChartGridlinesFormat.h b/include/MSGraphWorkbookChartGridlinesFormat.h new file mode 120000 index 00000000..2ebfcabb --- /dev/null +++ b/include/MSGraphWorkbookChartGridlinesFormat.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookChartGridlinesFormat.h \ No newline at end of file diff --git a/include/MSGraphWorkbookChartLegend.h b/include/MSGraphWorkbookChartLegend.h new file mode 120000 index 00000000..b91679e6 --- /dev/null +++ b/include/MSGraphWorkbookChartLegend.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookChartLegend.h \ No newline at end of file diff --git a/include/MSGraphWorkbookChartLegendFormat.h b/include/MSGraphWorkbookChartLegendFormat.h new file mode 120000 index 00000000..f329633c --- /dev/null +++ b/include/MSGraphWorkbookChartLegendFormat.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookChartLegendFormat.h \ No newline at end of file diff --git a/include/MSGraphWorkbookChartLineFormat.h b/include/MSGraphWorkbookChartLineFormat.h new file mode 120000 index 00000000..6036c893 --- /dev/null +++ b/include/MSGraphWorkbookChartLineFormat.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookChartLineFormat.h \ No newline at end of file diff --git a/include/MSGraphWorkbookChartPoint.h b/include/MSGraphWorkbookChartPoint.h new file mode 120000 index 00000000..45c1af2c --- /dev/null +++ b/include/MSGraphWorkbookChartPoint.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookChartPoint.h \ No newline at end of file diff --git a/include/MSGraphWorkbookChartPointFormat.h b/include/MSGraphWorkbookChartPointFormat.h new file mode 120000 index 00000000..5db56192 --- /dev/null +++ b/include/MSGraphWorkbookChartPointFormat.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookChartPointFormat.h \ No newline at end of file diff --git a/include/MSGraphWorkbookChartSeries.h b/include/MSGraphWorkbookChartSeries.h new file mode 120000 index 00000000..86cd971b --- /dev/null +++ b/include/MSGraphWorkbookChartSeries.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookChartSeries.h \ No newline at end of file diff --git a/include/MSGraphWorkbookChartSeriesFormat.h b/include/MSGraphWorkbookChartSeriesFormat.h new file mode 120000 index 00000000..1307c467 --- /dev/null +++ b/include/MSGraphWorkbookChartSeriesFormat.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookChartSeriesFormat.h \ No newline at end of file diff --git a/include/MSGraphWorkbookChartTitle.h b/include/MSGraphWorkbookChartTitle.h new file mode 120000 index 00000000..c9c52cbc --- /dev/null +++ b/include/MSGraphWorkbookChartTitle.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookChartTitle.h \ No newline at end of file diff --git a/include/MSGraphWorkbookChartTitleFormat.h b/include/MSGraphWorkbookChartTitleFormat.h new file mode 120000 index 00000000..0d018034 --- /dev/null +++ b/include/MSGraphWorkbookChartTitleFormat.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookChartTitleFormat.h \ No newline at end of file diff --git a/include/MSGraphWorkbookComment.h b/include/MSGraphWorkbookComment.h new file mode 120000 index 00000000..9a78df67 --- /dev/null +++ b/include/MSGraphWorkbookComment.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookComment.h \ No newline at end of file diff --git a/include/MSGraphWorkbookCommentReply.h b/include/MSGraphWorkbookCommentReply.h new file mode 120000 index 00000000..31049f09 --- /dev/null +++ b/include/MSGraphWorkbookCommentReply.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookCommentReply.h \ No newline at end of file diff --git a/include/MSGraphWorkbookFilter.h b/include/MSGraphWorkbookFilter.h new file mode 120000 index 00000000..cc946be1 --- /dev/null +++ b/include/MSGraphWorkbookFilter.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookFilter.h \ No newline at end of file diff --git a/include/MSGraphWorkbookFilterCriteria.h b/include/MSGraphWorkbookFilterCriteria.h new file mode 120000 index 00000000..9d26fb88 --- /dev/null +++ b/include/MSGraphWorkbookFilterCriteria.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookFilterCriteria.h \ No newline at end of file diff --git a/include/MSGraphWorkbookFilterDatetime.h b/include/MSGraphWorkbookFilterDatetime.h new file mode 120000 index 00000000..036e2980 --- /dev/null +++ b/include/MSGraphWorkbookFilterDatetime.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookFilterDatetime.h \ No newline at end of file diff --git a/include/MSGraphWorkbookFormatProtection.h b/include/MSGraphWorkbookFormatProtection.h new file mode 120000 index 00000000..5388e19a --- /dev/null +++ b/include/MSGraphWorkbookFormatProtection.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookFormatProtection.h \ No newline at end of file diff --git a/include/MSGraphWorkbookFunctionResult.h b/include/MSGraphWorkbookFunctionResult.h new file mode 120000 index 00000000..6f19adba --- /dev/null +++ b/include/MSGraphWorkbookFunctionResult.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookFunctionResult.h \ No newline at end of file diff --git a/include/MSGraphWorkbookFunctions.h b/include/MSGraphWorkbookFunctions.h new file mode 120000 index 00000000..c8644a05 --- /dev/null +++ b/include/MSGraphWorkbookFunctions.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookFunctions.h \ No newline at end of file diff --git a/include/MSGraphWorkbookIcon.h b/include/MSGraphWorkbookIcon.h new file mode 120000 index 00000000..889bc3fe --- /dev/null +++ b/include/MSGraphWorkbookIcon.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookIcon.h \ No newline at end of file diff --git a/include/MSGraphWorkbookNamedItem.h b/include/MSGraphWorkbookNamedItem.h new file mode 120000 index 00000000..c360fc98 --- /dev/null +++ b/include/MSGraphWorkbookNamedItem.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookNamedItem.h \ No newline at end of file diff --git a/include/MSGraphWorkbookOperation.h b/include/MSGraphWorkbookOperation.h new file mode 120000 index 00000000..e46303da --- /dev/null +++ b/include/MSGraphWorkbookOperation.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookOperation.h \ No newline at end of file diff --git a/include/MSGraphWorkbookOperationError.h b/include/MSGraphWorkbookOperationError.h new file mode 120000 index 00000000..5611579a --- /dev/null +++ b/include/MSGraphWorkbookOperationError.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookOperationError.h \ No newline at end of file diff --git a/include/MSGraphWorkbookOperationStatus.h b/include/MSGraphWorkbookOperationStatus.h new file mode 120000 index 00000000..e157ba34 --- /dev/null +++ b/include/MSGraphWorkbookOperationStatus.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookOperationStatus.h \ No newline at end of file diff --git a/include/MSGraphWorkbookPivotTable.h b/include/MSGraphWorkbookPivotTable.h new file mode 120000 index 00000000..54189760 --- /dev/null +++ b/include/MSGraphWorkbookPivotTable.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookPivotTable.h \ No newline at end of file diff --git a/include/MSGraphWorkbookRange.h b/include/MSGraphWorkbookRange.h new file mode 120000 index 00000000..ddb9d338 --- /dev/null +++ b/include/MSGraphWorkbookRange.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookRange.h \ No newline at end of file diff --git a/include/MSGraphWorkbookRangeBorder.h b/include/MSGraphWorkbookRangeBorder.h new file mode 120000 index 00000000..630e48dd --- /dev/null +++ b/include/MSGraphWorkbookRangeBorder.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookRangeBorder.h \ No newline at end of file diff --git a/include/MSGraphWorkbookRangeFill.h b/include/MSGraphWorkbookRangeFill.h new file mode 120000 index 00000000..20762832 --- /dev/null +++ b/include/MSGraphWorkbookRangeFill.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookRangeFill.h \ No newline at end of file diff --git a/include/MSGraphWorkbookRangeFont.h b/include/MSGraphWorkbookRangeFont.h new file mode 120000 index 00000000..afb668f3 --- /dev/null +++ b/include/MSGraphWorkbookRangeFont.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookRangeFont.h \ No newline at end of file diff --git a/include/MSGraphWorkbookRangeFormat.h b/include/MSGraphWorkbookRangeFormat.h new file mode 120000 index 00000000..f4071368 --- /dev/null +++ b/include/MSGraphWorkbookRangeFormat.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookRangeFormat.h \ No newline at end of file diff --git a/include/MSGraphWorkbookRangeReference.h b/include/MSGraphWorkbookRangeReference.h new file mode 120000 index 00000000..667fec76 --- /dev/null +++ b/include/MSGraphWorkbookRangeReference.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookRangeReference.h \ No newline at end of file diff --git a/include/MSGraphWorkbookRangeSort.h b/include/MSGraphWorkbookRangeSort.h new file mode 120000 index 00000000..ad626f5c --- /dev/null +++ b/include/MSGraphWorkbookRangeSort.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookRangeSort.h \ No newline at end of file diff --git a/include/MSGraphWorkbookRangeView.h b/include/MSGraphWorkbookRangeView.h new file mode 120000 index 00000000..8d46967f --- /dev/null +++ b/include/MSGraphWorkbookRangeView.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookRangeView.h \ No newline at end of file diff --git a/include/MSGraphWorkbookSessionInfo.h b/include/MSGraphWorkbookSessionInfo.h new file mode 120000 index 00000000..cdc299f3 --- /dev/null +++ b/include/MSGraphWorkbookSessionInfo.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookSessionInfo.h \ No newline at end of file diff --git a/include/MSGraphWorkbookSortField.h b/include/MSGraphWorkbookSortField.h new file mode 120000 index 00000000..f2eddf8b --- /dev/null +++ b/include/MSGraphWorkbookSortField.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookSortField.h \ No newline at end of file diff --git a/include/MSGraphWorkbookTable.h b/include/MSGraphWorkbookTable.h new file mode 120000 index 00000000..aa218b0e --- /dev/null +++ b/include/MSGraphWorkbookTable.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookTable.h \ No newline at end of file diff --git a/include/MSGraphWorkbookTableColumn.h b/include/MSGraphWorkbookTableColumn.h new file mode 120000 index 00000000..6f63904f --- /dev/null +++ b/include/MSGraphWorkbookTableColumn.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookTableColumn.h \ No newline at end of file diff --git a/include/MSGraphWorkbookTableRow.h b/include/MSGraphWorkbookTableRow.h new file mode 120000 index 00000000..04000ef5 --- /dev/null +++ b/include/MSGraphWorkbookTableRow.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookTableRow.h \ No newline at end of file diff --git a/include/MSGraphWorkbookTableSort.h b/include/MSGraphWorkbookTableSort.h new file mode 120000 index 00000000..d614b087 --- /dev/null +++ b/include/MSGraphWorkbookTableSort.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookTableSort.h \ No newline at end of file diff --git a/include/MSGraphWorkbookWorksheet.h b/include/MSGraphWorkbookWorksheet.h new file mode 120000 index 00000000..26091455 --- /dev/null +++ b/include/MSGraphWorkbookWorksheet.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookWorksheet.h \ No newline at end of file diff --git a/include/MSGraphWorkbookWorksheetProtection.h b/include/MSGraphWorkbookWorksheetProtection.h new file mode 120000 index 00000000..429d15d4 --- /dev/null +++ b/include/MSGraphWorkbookWorksheetProtection.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookWorksheetProtection.h \ No newline at end of file diff --git a/include/MSGraphWorkbookWorksheetProtectionOptions.h b/include/MSGraphWorkbookWorksheetProtectionOptions.h new file mode 120000 index 00000000..08efd830 --- /dev/null +++ b/include/MSGraphWorkbookWorksheetProtectionOptions.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkbookWorksheetProtectionOptions.h \ No newline at end of file diff --git a/include/MSGraphWorkforceIntegration.h b/include/MSGraphWorkforceIntegration.h new file mode 120000 index 00000000..974ee2a4 --- /dev/null +++ b/include/MSGraphWorkforceIntegration.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkforceIntegration.h \ No newline at end of file diff --git a/include/MSGraphWorkforceIntegrationEncryption.h b/include/MSGraphWorkforceIntegrationEncryption.h new file mode 120000 index 00000000..39417bee --- /dev/null +++ b/include/MSGraphWorkforceIntegrationEncryption.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkforceIntegrationEncryption.h \ No newline at end of file diff --git a/include/MSGraphWorkforceIntegrationEncryptionProtocol.h b/include/MSGraphWorkforceIntegrationEncryptionProtocol.h new file mode 120000 index 00000000..8c308306 --- /dev/null +++ b/include/MSGraphWorkforceIntegrationEncryptionProtocol.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkforceIntegrationEncryptionProtocol.h \ No newline at end of file diff --git a/include/MSGraphWorkforceIntegrationSupportedEntities.h b/include/MSGraphWorkforceIntegrationSupportedEntities.h new file mode 120000 index 00000000..e407dc61 --- /dev/null +++ b/include/MSGraphWorkforceIntegrationSupportedEntities.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkforceIntegrationSupportedEntities.h \ No newline at end of file diff --git a/include/MSGraphWorkingHours.h b/include/MSGraphWorkingHours.h new file mode 120000 index 00000000..35f2c878 --- /dev/null +++ b/include/MSGraphWorkingHours.h @@ -0,0 +1 @@ +../GeneratedModels/MSGraphWorkingHours.h \ No newline at end of file diff --git a/include/MSObject.h b/include/MSObject.h new file mode 120000 index 00000000..17235e65 --- /dev/null +++ b/include/MSObject.h @@ -0,0 +1 @@ +../BaseModels/MSObject.h \ No newline at end of file diff --git a/include/MSTimeOfDay.h b/include/MSTimeOfDay.h new file mode 120000 index 00000000..30b62dc9 --- /dev/null +++ b/include/MSTimeOfDay.h @@ -0,0 +1 @@ +../BaseModels/MSTimeOfDay.h \ No newline at end of file diff --git a/include/NSDate+MSSerialization.h b/include/NSDate+MSSerialization.h new file mode 120000 index 00000000..761e02d3 --- /dev/null +++ b/include/NSDate+MSSerialization.h @@ -0,0 +1 @@ +../BaseModels/NSDate+MSSerialization.h \ No newline at end of file