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

fix for targetedMobileApps #5509

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ function Get-TargetResource
foreach ($value in $getValue.AdditionalProperties.targetedMobileApps)
{
$myTMAdata = @{}
$myTMAdata.Add('address', $value.address)
$myTMAdata.Add('name', $value.name)
$myTMAdata.Add('publisher', $value.publisher)
$myTMAdata.Add('appStoreUrl', $value.appStoreUrl)
$myTMAdata.Add('appId', $value.appId)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class MSFT_MicrosoftvpnProxyServer
[ClassVersion("1.0.0")]
class MSFT_targetedMobileApps
{
[Write, Description("The application name.")] String address;
[Write, Description("The application name.")] String name;
[Write, Description("The publisher of the application.")] String publisher;
[Write, Description("The Store URL of the application.")] String appStoreUrl;
[Write, Description("The application or bundle identifier of the application.")] String appId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ Describe -Name $Global:DscHelper.DescribeHeader -Fixture {
(New-CimInstance `
-ClassName MSFT_targetedMobileApps `
-Property @{
address = 'FakeStringValue'
name = 'FakeStringValue'
publisher = 'FakeStringValue'
appStoreUrl = 'FakeStringValue'
appId = 'FakeStringValue'
Expand Down Expand Up @@ -219,7 +219,7 @@ Describe -Name $Global:DscHelper.DescribeHeader -Fixture {
(New-CimInstance `
-ClassName MSFT_targetedMobileApps `
-Property @{
address = 'FakeStringValue'
name = 'FakeStringValue'
publisher = 'FakeStringValue'
appStoreUrl = 'FakeStringValue'
appId = 'FakeStringValue'
Expand Down Expand Up @@ -285,7 +285,7 @@ Describe -Name $Global:DscHelper.DescribeHeader -Fixture {
)
targetedMobileApps = @(
@{
address = 'FakeStringValue'
name = 'FakeStringValue'
publisher = 'FakeStringValue'
appStoreUrl = 'FakeStringValue'
appId = 'FakeStringValue'
Expand Down Expand Up @@ -375,7 +375,7 @@ Describe -Name $Global:DscHelper.DescribeHeader -Fixture {
(New-CimInstance `
-ClassName MSFT_targetedMobileApps `
-Property @{
address = 'FakeStringValue'
name = 'FakeStringValue'
publisher = 'FakeStringValue'
appStoreUrl = 'FakeStringValue'
appId = 'FakeStringValue'
Expand Down Expand Up @@ -442,7 +442,7 @@ Describe -Name $Global:DscHelper.DescribeHeader -Fixture {
)
targetedMobileApps = @(
@{
address = 'FakeStringValue'
name = 'FakeStringValue'
publisher = 'FakeStringValue'
appStoreUrl = 'FakeStringValue'
appId = 'FakeStringValue'
Expand Down