├── .gitattributes ├── .gitignore ├── .gitmodules ├── Design.jpg ├── Generating_the_PowerShell_Binary_Module.jpg ├── Graph Schemas ├── v1.0 - 20181126.csdl └── v1.0 - 20190629.csdl ├── Intune-PowerShell-SDK-Code-Generator.yml ├── PowerShellGraphSDKGenerator.sln ├── README.md ├── SECURITY.md ├── Scripts ├── build-full.ps1 ├── build-portable.ps1 ├── dotnet-install.ps1 ├── init.ps1 ├── msbuild-install.ps1 ├── run.ps1 └── test.ps1 ├── Test Graph Schemas ├── beta-20180209 - Intune.csdl ├── beta-20180209.csdl ├── beta-20180604 - Intune.csdl ├── beta-20180604.csdl ├── v1.0-20180222 - Intune.csdl ├── v1.0-20180222.csdl ├── v1.0-20180406 - Intune.csdl ├── v1.0-20180406.csdl ├── v1.0-20180628 - Intune.csdl ├── v1.0-20180628.csdl ├── v1.0-20180813 - Intune.csdl ├── v1.0-20180813.csdl ├── v1.0-20180917 - Intune.csdl ├── v1.0-20180917.csdl ├── v1.0-20190629 - Intune.csdl └── v1.0-20190629.csdl ├── Tests ├── AppProtectionPolicyTests.ps1 ├── CompliancePolicyTests.ps1 ├── ConfigurationPolicyTests.ps1 ├── DeviceAppManagement │ ├── AppProtectionPolicies.ps1 │ └── MobileApps.ps1 ├── DeviceManagement │ ├── DeviceCompliancePolicies.ps1 │ └── DeviceManagement.ps1 ├── GetDeviceAppMgmtTests.ps1 ├── GetDeviceMgmtTests.ps1 ├── LobApps │ └── UploadIOSLobApp.ps1 ├── Misc │ ├── POC_AllOS_Create_Cmdlets.ps1 │ └── POC_AllOS_Reset_Cmdlets.ps1 └── Set-IntuneContext.psm1 ├── init.cmd └── src ├── GraphODataPowerShellWriter ├── Generator │ ├── Behaviors │ │ ├── Object Factories │ │ │ ├── 1_OdcmModelToObjectFactoriesConversionBehavior.cs │ │ │ └── 2_ObjectFactoryToCSharpFileConversionBehavior.cs │ │ └── SDK Operations │ │ │ ├── 1_OdcmModelToNodesConversionBehavior.cs │ │ │ ├── 2_NodeToResourceConversionBehavior.cs │ │ │ ├── 3_ResourceToCSharpFileConversionBehavior.cs │ │ │ └── 4_CSharpFileToTextFileConversionBehavior.cs │ └── Models │ │ ├── CSharpAbstractions │ │ ├── CSharpAccessModifier.cs │ │ ├── CSharpArgument.cs │ │ ├── CSharpAttribute.cs │ │ ├── CSharpClass.cs │ │ ├── CSharpDocumentationComment.cs │ │ ├── CSharpFile.cs │ │ ├── CSharpMethod.cs │ │ └── CSharpProperty.cs │ │ ├── ODataRoute.cs │ │ ├── OdcmNode.cs │ │ └── PowerShellAbstractions │ │ ├── Cmdlet.cs │ │ ├── CmdletDocumentation.cs │ │ ├── CmdletDocumentationLink.cs │ │ ├── CmdletName.cs │ │ ├── CmdletOperationTypes.cs │ │ ├── CmdletParameter.cs │ │ ├── CmdletParameterDocumentation.cs │ │ ├── CmdletParameterSet.cs │ │ ├── CmdletParameterSets.cs │ │ ├── ObjectFactoryCmdlet.cs │ │ ├── OperationCmdlet.cs │ │ └── Resource.cs ├── GraphODataPowerShellSDKWriter.csproj ├── ListCmdlets.ps1 ├── PowerShellSDKWriter.cs └── Utils │ ├── CSharpAccessModifierUtils.cs │ ├── CSharpClassAttributeHelper.cs │ ├── CSharpFileHelper.cs │ ├── CSharpMethodHelper.cs │ ├── CSharpNamingUtils.cs │ ├── CSharpPropertyAttributeHelper.cs │ ├── CSharpTypeUtils.cs │ ├── CmdletOperationTypeUtils.cs │ ├── CmdletParameterUtils.cs │ ├── DocumentationUtils.cs │ ├── EnumerableUtils.cs │ ├── OdcmUtils.cs │ └── StringUtils.cs └── PowerShellGraphSDK ├── .gitignore ├── Common ├── Attributes │ ├── DerivedTypeAttribute.cs │ ├── ExpandableAttribute.cs │ ├── IdParameter.cs │ ├── ODataTypeAttribute.cs │ ├── ParameterSetSelectorAttribute.cs │ ├── ResourceIdParameterAttribute.cs │ ├── ResourceReferenceAttribute.cs │ ├── ResourceTypePropertyNameAttribute.cs │ ├── SelectableAttribute.cs │ ├── SortableAttribute.cs │ ├── TypeCastParameterAttribute.cs │ ├── ValidateTypeAttribute.cs │ └── ValidateUrlAttribute.cs ├── Constants │ ├── AnnotationTerms.cs │ ├── EdmTypeNames.cs │ ├── QueryParameters.cs │ ├── RequestProperties.cs │ └── SearchResultProperties.cs ├── EnvironmentParameters.cs ├── Exceptions │ ├── AdalAuthException.cs │ ├── AuthException.cs │ ├── MsiAuthException.cs │ └── PSGraphSDKException.cs ├── PSAuthenticationError.cs └── Utils │ ├── AuthUtils.cs │ ├── AuthUtils_NetFramework.cs │ ├── AuthUtils_NetStandard.cs │ ├── CmdletUtils.cs │ ├── ExceptionUtils.cs │ ├── JsonUtils.cs │ ├── ODataTypeUtils.cs │ ├── PSObjectUtils.cs │ ├── ReferencePathGenerator.cs │ └── SdkAuthResult.cs ├── LICENSE ├── PowerShellCmdlets ├── ActionCmdlet.cs ├── DeleteCmdlet.cs ├── FunctionReturningCollectionCmdlet.cs ├── FunctionReturningEntityCmdlet.cs ├── GetCmdlet.cs ├── GetOrSearchCmdlet.cs ├── GetStreamCmdlet.cs ├── ODataCmdletBase.cs ├── ODataCmdletBase_Helpers.cs ├── ODataCmdletBase_Overridable.cs ├── ODataCmdletBase_Private.cs ├── ObjectFactoryCmdletBase.cs ├── PatchCmdlet.cs ├── PostCmdlet.cs ├── PostOrPatchCmdlet.cs ├── PostReferenceToCollectionCmdlet.cs ├── PutReferenceToEntityCmdlet.cs ├── UpdateStreamCmdlet.cs └── Utils │ ├── ModuleInitializer.cs │ └── UtilCmdlets.cs ├── PowerShellGraphSDK.csproj ├── PowerShellGraphSDK.sln ├── PowerShellModuleAdditions ├── CustomModules │ ├── AliasCmdlets.psm1 │ └── UtilCmdlets.psm1 ├── LICENSE.txt ├── README.md └── Third Party Notices.txt ├── Properties └── AssemblyInfo.cs ├── README.md ├── Samples ├── Apps │ ├── Apps.psm1 │ ├── Microsoft.Graph.Intune.Apps.psd1 │ ├── UploadIOSLobApp.ps1 │ ├── UploadLobApp.psm1 │ ├── VisualizeData.ps1 │ ├── test.apk │ └── test.ipa └── README.md └── Scripts ├── ListCmdlets.ps1 └── generateModuleManifest.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/.gitmodules -------------------------------------------------------------------------------- /Design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Design.jpg -------------------------------------------------------------------------------- /Generating_the_PowerShell_Binary_Module.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Generating_the_PowerShell_Binary_Module.jpg -------------------------------------------------------------------------------- /Graph Schemas/v1.0 - 20181126.csdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Graph Schemas/v1.0 - 20181126.csdl -------------------------------------------------------------------------------- /Graph Schemas/v1.0 - 20190629.csdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Graph Schemas/v1.0 - 20190629.csdl -------------------------------------------------------------------------------- /Intune-PowerShell-SDK-Code-Generator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Intune-PowerShell-SDK-Code-Generator.yml -------------------------------------------------------------------------------- /PowerShellGraphSDKGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/PowerShellGraphSDKGenerator.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Scripts/build-full.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Scripts/build-full.ps1 -------------------------------------------------------------------------------- /Scripts/build-portable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Scripts/build-portable.ps1 -------------------------------------------------------------------------------- /Scripts/dotnet-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Scripts/dotnet-install.ps1 -------------------------------------------------------------------------------- /Scripts/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Scripts/init.ps1 -------------------------------------------------------------------------------- /Scripts/msbuild-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Scripts/msbuild-install.ps1 -------------------------------------------------------------------------------- /Scripts/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Scripts/run.ps1 -------------------------------------------------------------------------------- /Scripts/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Scripts/test.ps1 -------------------------------------------------------------------------------- /Test Graph Schemas/beta-20180209 - Intune.csdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Test Graph Schemas/beta-20180209 - Intune.csdl -------------------------------------------------------------------------------- /Test Graph Schemas/beta-20180209.csdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Test Graph Schemas/beta-20180209.csdl -------------------------------------------------------------------------------- /Test Graph Schemas/beta-20180604 - Intune.csdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Test Graph Schemas/beta-20180604 - Intune.csdl -------------------------------------------------------------------------------- /Test Graph Schemas/beta-20180604.csdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Test Graph Schemas/beta-20180604.csdl -------------------------------------------------------------------------------- /Test Graph Schemas/v1.0-20180222 - Intune.csdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Test Graph Schemas/v1.0-20180222 - Intune.csdl -------------------------------------------------------------------------------- /Test Graph Schemas/v1.0-20180222.csdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Test Graph Schemas/v1.0-20180222.csdl -------------------------------------------------------------------------------- /Test Graph Schemas/v1.0-20180406 - Intune.csdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Test Graph Schemas/v1.0-20180406 - Intune.csdl -------------------------------------------------------------------------------- /Test Graph Schemas/v1.0-20180406.csdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Test Graph Schemas/v1.0-20180406.csdl -------------------------------------------------------------------------------- /Test Graph Schemas/v1.0-20180628 - Intune.csdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Test Graph Schemas/v1.0-20180628 - Intune.csdl -------------------------------------------------------------------------------- /Test Graph Schemas/v1.0-20180628.csdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Test Graph Schemas/v1.0-20180628.csdl -------------------------------------------------------------------------------- /Test Graph Schemas/v1.0-20180813 - Intune.csdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Test Graph Schemas/v1.0-20180813 - Intune.csdl -------------------------------------------------------------------------------- /Test Graph Schemas/v1.0-20180813.csdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Test Graph Schemas/v1.0-20180813.csdl -------------------------------------------------------------------------------- /Test Graph Schemas/v1.0-20180917 - Intune.csdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Test Graph Schemas/v1.0-20180917 - Intune.csdl -------------------------------------------------------------------------------- /Test Graph Schemas/v1.0-20180917.csdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Test Graph Schemas/v1.0-20180917.csdl -------------------------------------------------------------------------------- /Test Graph Schemas/v1.0-20190629 - Intune.csdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Test Graph Schemas/v1.0-20190629 - Intune.csdl -------------------------------------------------------------------------------- /Test Graph Schemas/v1.0-20190629.csdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Test Graph Schemas/v1.0-20190629.csdl -------------------------------------------------------------------------------- /Tests/AppProtectionPolicyTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Tests/AppProtectionPolicyTests.ps1 -------------------------------------------------------------------------------- /Tests/CompliancePolicyTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Tests/CompliancePolicyTests.ps1 -------------------------------------------------------------------------------- /Tests/ConfigurationPolicyTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Tests/ConfigurationPolicyTests.ps1 -------------------------------------------------------------------------------- /Tests/DeviceAppManagement/AppProtectionPolicies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Tests/DeviceAppManagement/AppProtectionPolicies.ps1 -------------------------------------------------------------------------------- /Tests/DeviceAppManagement/MobileApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Tests/DeviceAppManagement/MobileApps.ps1 -------------------------------------------------------------------------------- /Tests/DeviceManagement/DeviceCompliancePolicies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Tests/DeviceManagement/DeviceCompliancePolicies.ps1 -------------------------------------------------------------------------------- /Tests/DeviceManagement/DeviceManagement.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Tests/DeviceManagement/DeviceManagement.ps1 -------------------------------------------------------------------------------- /Tests/GetDeviceAppMgmtTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Tests/GetDeviceAppMgmtTests.ps1 -------------------------------------------------------------------------------- /Tests/GetDeviceMgmtTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Tests/GetDeviceMgmtTests.ps1 -------------------------------------------------------------------------------- /Tests/LobApps/UploadIOSLobApp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Tests/LobApps/UploadIOSLobApp.ps1 -------------------------------------------------------------------------------- /Tests/Misc/POC_AllOS_Create_Cmdlets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Tests/Misc/POC_AllOS_Create_Cmdlets.ps1 -------------------------------------------------------------------------------- /Tests/Misc/POC_AllOS_Reset_Cmdlets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Tests/Misc/POC_AllOS_Reset_Cmdlets.ps1 -------------------------------------------------------------------------------- /Tests/Set-IntuneContext.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/Tests/Set-IntuneContext.psm1 -------------------------------------------------------------------------------- /init.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/init.cmd -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Behaviors/Object Factories/1_OdcmModelToObjectFactoriesConversionBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Behaviors/Object Factories/1_OdcmModelToObjectFactoriesConversionBehavior.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Behaviors/Object Factories/2_ObjectFactoryToCSharpFileConversionBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Behaviors/Object Factories/2_ObjectFactoryToCSharpFileConversionBehavior.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Behaviors/SDK Operations/1_OdcmModelToNodesConversionBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Behaviors/SDK Operations/1_OdcmModelToNodesConversionBehavior.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Behaviors/SDK Operations/2_NodeToResourceConversionBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Behaviors/SDK Operations/2_NodeToResourceConversionBehavior.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Behaviors/SDK Operations/3_ResourceToCSharpFileConversionBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Behaviors/SDK Operations/3_ResourceToCSharpFileConversionBehavior.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Behaviors/SDK Operations/4_CSharpFileToTextFileConversionBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Behaviors/SDK Operations/4_CSharpFileToTextFileConversionBehavior.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Models/CSharpAbstractions/CSharpAccessModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Models/CSharpAbstractions/CSharpAccessModifier.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Models/CSharpAbstractions/CSharpArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Models/CSharpAbstractions/CSharpArgument.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Models/CSharpAbstractions/CSharpAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Models/CSharpAbstractions/CSharpAttribute.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Models/CSharpAbstractions/CSharpClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Models/CSharpAbstractions/CSharpClass.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Models/CSharpAbstractions/CSharpDocumentationComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Models/CSharpAbstractions/CSharpDocumentationComment.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Models/CSharpAbstractions/CSharpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Models/CSharpAbstractions/CSharpFile.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Models/CSharpAbstractions/CSharpMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Models/CSharpAbstractions/CSharpMethod.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Models/CSharpAbstractions/CSharpProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Models/CSharpAbstractions/CSharpProperty.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Models/ODataRoute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Models/ODataRoute.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Models/OdcmNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Models/OdcmNode.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/Cmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/Cmdlet.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/CmdletDocumentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/CmdletDocumentation.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/CmdletDocumentationLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/CmdletDocumentationLink.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/CmdletName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/CmdletName.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/CmdletOperationTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/CmdletOperationTypes.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/CmdletParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/CmdletParameter.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/CmdletParameterDocumentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/CmdletParameterDocumentation.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/CmdletParameterSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/CmdletParameterSet.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/CmdletParameterSets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/CmdletParameterSets.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/ObjectFactoryCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/ObjectFactoryCmdlet.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/OperationCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/OperationCmdlet.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Generator/Models/PowerShellAbstractions/Resource.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/GraphODataPowerShellSDKWriter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/GraphODataPowerShellSDKWriter.csproj -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/ListCmdlets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/ListCmdlets.ps1 -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/PowerShellSDKWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/PowerShellSDKWriter.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Utils/CSharpAccessModifierUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Utils/CSharpAccessModifierUtils.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Utils/CSharpClassAttributeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Utils/CSharpClassAttributeHelper.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Utils/CSharpFileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Utils/CSharpFileHelper.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Utils/CSharpMethodHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Utils/CSharpMethodHelper.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Utils/CSharpNamingUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Utils/CSharpNamingUtils.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Utils/CSharpPropertyAttributeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Utils/CSharpPropertyAttributeHelper.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Utils/CSharpTypeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Utils/CSharpTypeUtils.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Utils/CmdletOperationTypeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Utils/CmdletOperationTypeUtils.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Utils/CmdletParameterUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Utils/CmdletParameterUtils.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Utils/DocumentationUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Utils/DocumentationUtils.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Utils/EnumerableUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Utils/EnumerableUtils.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Utils/OdcmUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Utils/OdcmUtils.cs -------------------------------------------------------------------------------- /src/GraphODataPowerShellWriter/Utils/StringUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/GraphODataPowerShellWriter/Utils/StringUtils.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/.gitignore -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Attributes/DerivedTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Attributes/DerivedTypeAttribute.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Attributes/ExpandableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Attributes/ExpandableAttribute.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Attributes/IdParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Attributes/IdParameter.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Attributes/ODataTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Attributes/ODataTypeAttribute.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Attributes/ParameterSetSelectorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Attributes/ParameterSetSelectorAttribute.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Attributes/ResourceIdParameterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Attributes/ResourceIdParameterAttribute.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Attributes/ResourceReferenceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Attributes/ResourceReferenceAttribute.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Attributes/ResourceTypePropertyNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Attributes/ResourceTypePropertyNameAttribute.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Attributes/SelectableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Attributes/SelectableAttribute.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Attributes/SortableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Attributes/SortableAttribute.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Attributes/TypeCastParameterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Attributes/TypeCastParameterAttribute.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Attributes/ValidateTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Attributes/ValidateTypeAttribute.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Attributes/ValidateUrlAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Attributes/ValidateUrlAttribute.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Constants/AnnotationTerms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Constants/AnnotationTerms.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Constants/EdmTypeNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Constants/EdmTypeNames.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Constants/QueryParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Constants/QueryParameters.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Constants/RequestProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Constants/RequestProperties.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Constants/SearchResultProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Constants/SearchResultProperties.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/EnvironmentParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/EnvironmentParameters.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Exceptions/AdalAuthException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Exceptions/AdalAuthException.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Exceptions/AuthException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Exceptions/AuthException.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Exceptions/MsiAuthException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Exceptions/MsiAuthException.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Exceptions/PSGraphSDKException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Exceptions/PSGraphSDKException.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/PSAuthenticationError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/PSAuthenticationError.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Utils/AuthUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Utils/AuthUtils.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Utils/AuthUtils_NetFramework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Utils/AuthUtils_NetFramework.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Utils/AuthUtils_NetStandard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Utils/AuthUtils_NetStandard.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Utils/CmdletUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Utils/CmdletUtils.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Utils/ExceptionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Utils/ExceptionUtils.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Utils/JsonUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Utils/JsonUtils.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Utils/ODataTypeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Utils/ODataTypeUtils.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Utils/PSObjectUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Utils/PSObjectUtils.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Utils/ReferencePathGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Utils/ReferencePathGenerator.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Common/Utils/SdkAuthResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Common/Utils/SdkAuthResult.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/LICENSE -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellCmdlets/ActionCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellCmdlets/ActionCmdlet.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellCmdlets/DeleteCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellCmdlets/DeleteCmdlet.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellCmdlets/FunctionReturningCollectionCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellCmdlets/FunctionReturningCollectionCmdlet.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellCmdlets/FunctionReturningEntityCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellCmdlets/FunctionReturningEntityCmdlet.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellCmdlets/GetCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellCmdlets/GetCmdlet.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellCmdlets/GetOrSearchCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellCmdlets/GetOrSearchCmdlet.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellCmdlets/GetStreamCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellCmdlets/GetStreamCmdlet.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellCmdlets/ODataCmdletBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellCmdlets/ODataCmdletBase.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellCmdlets/ODataCmdletBase_Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellCmdlets/ODataCmdletBase_Helpers.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellCmdlets/ODataCmdletBase_Overridable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellCmdlets/ODataCmdletBase_Overridable.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellCmdlets/ODataCmdletBase_Private.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellCmdlets/ODataCmdletBase_Private.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellCmdlets/ObjectFactoryCmdletBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellCmdlets/ObjectFactoryCmdletBase.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellCmdlets/PatchCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellCmdlets/PatchCmdlet.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellCmdlets/PostCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellCmdlets/PostCmdlet.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellCmdlets/PostOrPatchCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellCmdlets/PostOrPatchCmdlet.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellCmdlets/PostReferenceToCollectionCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellCmdlets/PostReferenceToCollectionCmdlet.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellCmdlets/PutReferenceToEntityCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellCmdlets/PutReferenceToEntityCmdlet.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellCmdlets/UpdateStreamCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellCmdlets/UpdateStreamCmdlet.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellCmdlets/Utils/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellCmdlets/Utils/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellCmdlets/Utils/UtilCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellCmdlets/Utils/UtilCmdlets.cs -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellGraphSDK.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellGraphSDK.csproj -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellGraphSDK.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellGraphSDK.sln -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellModuleAdditions/CustomModules/AliasCmdlets.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellModuleAdditions/CustomModules/AliasCmdlets.psm1 -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellModuleAdditions/CustomModules/UtilCmdlets.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellModuleAdditions/CustomModules/UtilCmdlets.psm1 -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellModuleAdditions/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellModuleAdditions/LICENSE.txt -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellModuleAdditions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellModuleAdditions/README.md -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/PowerShellModuleAdditions/Third Party Notices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/PowerShellModuleAdditions/Third Party Notices.txt -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("GraphODataPowerShellSDKWriter")] -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/README.md -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Samples/Apps/Apps.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Samples/Apps/Apps.psm1 -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Samples/Apps/Microsoft.Graph.Intune.Apps.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Samples/Apps/Microsoft.Graph.Intune.Apps.psd1 -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Samples/Apps/UploadIOSLobApp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Samples/Apps/UploadIOSLobApp.ps1 -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Samples/Apps/UploadLobApp.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Samples/Apps/UploadLobApp.psm1 -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Samples/Apps/VisualizeData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Samples/Apps/VisualizeData.ps1 -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Samples/Apps/test.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Samples/Apps/test.apk -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Samples/Apps/test.ipa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Samples/Apps/test.ipa -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Samples/README.md -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Scripts/ListCmdlets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Scripts/ListCmdlets.ps1 -------------------------------------------------------------------------------- /src/PowerShellGraphSDK/Scripts/generateModuleManifest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/Intune-PowerShell-SDK-Code-Generator/HEAD/src/PowerShellGraphSDK/Scripts/generateModuleManifest.ps1 --------------------------------------------------------------------------------