Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Microsoft365 DSC for Tenant Admin - Intune Derived Credentials. #5151

Open
wants to merge 29 commits into
base: Dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
b17cbd9
Draft Commit Intune_DSC_Win32App
Kajalp1079 Oct 5, 2024
6bc005b
Draft Intune DSC AndroidApp
Kajalp1079 Oct 5, 2024
b90fb97
Draft Intune DSC Win32App
Kajalp1079 Oct 5, 2024
cf4d99f
Draft Intune DSC AndroidApp
Kajalp1079 Oct 5, 2024
59f0429
Draft Intune DSC IOSApps
Kajalp1079 Oct 5, 2024
1184dcd
Draft Intune DSC Derived Credential
Kajalp1079 Oct 5, 2024
169384c
Draft Intune DSC Derived Credential
Kajalp1079 Oct 6, 2024
0bc1292
Draft Intune DSC Derived Credential
Kajalp1079 Oct 6, 2024
4777f6c
Draft Intune DSC Derived Credential
Kajalp1079 Oct 7, 2024
bc1a1c6
Merge branch 'Dev' into kajalp-Intune_DSC_win32Apps
Kajalp1079 Oct 8, 2024
a1b6843
Merge branch 'Dev' into kajalp/Intune_DSC_DerivedCredential
Kajalp1079 Oct 8, 2024
135cd53
Merge branch 'kajalp/Intune_DSC_IOSApps' into Dev
Kajalp1079 Oct 8, 2024
fb3d510
Merge branch 'kajalp/Intune_DSC_DerivedCredential' into Dev
Kajalp1079 Oct 8, 2024
55c9e2c
Merge branch 'kajalp/Intune_DSC_AndroidApps' into Dev
Kajalp1079 Oct 8, 2024
fc51062
Merge branch 'kajalp-Intune_DSC_win32Apps' into Dev
Kajalp1079 Oct 8, 2024
38d6efc
Cleaned up, tested and added UTs.
Kajalp1079 Oct 8, 2024
4b500da
Fixed a typo in example to make the PR validation pass.
Kajalp1079 Oct 8, 2024
5a48be3
Merge branch 'Dev' into kajalp/Intune_DSC_DerivedCredential
NikCharlebois Oct 8, 2024
d8d4611
updating perms settings to pass PR validation.
Kajalp1079 Oct 8, 2024
5b13444
Merge branch 'Dev' into kajalp/Intune_DSC_DerivedCredential
Kajalp1079 Oct 9, 2024
cfa471c
Delete the accidental merge from topic branches.
Kajalp1079 Oct 9, 2024
4550afe
Merge branch 'Dev' into kajalp/Intune_DSC_DerivedCredential
Kajalp1079 Oct 9, 2024
e92e22c
Fixed UTs.
Kajalp1079 Oct 10, 2024
ad22aa6
Fixed param names in UT stubs.
Kajalp1079 Oct 10, 2024
5c1cdb5
Merge branch 'Dev' into kajalp/Intune_DSC_DerivedCredential
NikCharlebois Oct 11, 2024
95d2c93
no message
Kajalp1079 Oct 11, 2024
1f3d95f
fixed UTs.
Kajalp1079 Oct 11, 2024
b84ca9e
examples fixed for macos lob app.
Kajalp1079 Oct 11, 2024
360c82b
fixed create example.
Kajalp1079 Oct 11, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

# UNRELEASED

* IntuneDerivedCredential
* Initial release.
* AADAdminConsentRequestPolicy
* Initial release.
* AADApplication
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[ClassVersion("1.0.0.0"), FriendlyName("IntuneAppCategory")]
class MSFT_IntuneAppCategory : OMI_BaseResource
{
[Key, Description("The name of the app category.")] String DisplayName;
[Key, Description("The name of the app.")] String DisplayName;
[Write, Description("The unique identifier for an entity. Read-only.")] String Id;

[Write, Description("Present ensures the instance exists, absent ensures it is removed."), ValueMap{"Present", "Absent"}, Values{"Present", "Absent"}] string Ensure;
Expand Down
Loading
Loading