Skip to content

Commit

Permalink
Merge pull request #818 from NikCharlebois/Dev
Browse files Browse the repository at this point in the history
Fixes to Teams resources
  • Loading branch information
NikCharlebois authored Oct 5, 2020
2 parents df0183f + 0d9d05b commit a4d9b0e
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change log for Microsoft365DSC

## 1.20.1007.1

* TeamsCallingPolicy
* Added new supported properties;
* TeamsMeetingPolicy
* Added new supported properties;
* TeamsTeam
* Added new supported properties;

## 1.20.930.1

* IntuneAppConfigurationPolicy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ function Test-TargetResource
[System.String]
[ValidateSet('Enabled', 'Disabled')]
$SpamFilteringEnabledType = 'Enabled',

[Parameter()]
[ValidateSet("Present", "Absent")]
[System.String]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ class MSFT_TeamsCallingPolicy : OMI_BaseResource
[Write, Description("This setting allows the tenant admin to enable or disable the Auto-Answer setting. Valid options are: Enabled, Disabled."), ValueMap{"Enabled","Disabled"}, Values{"Enabled","Disabled"}] String AutoAnswerEnabledType;
[Write, Description("Setting this parameter determines whether calls identified as Spam will be rejected or not (probably). Valid options are: Enabled, Disabled."), ValueMap{"Enabled","Disabled"}, Values{"Enabled","Disabled"}] String SpamFilteringEnabledType;
[Write, Description("Present ensures the policyexists, absent ensures it is removed."), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure;
[Required, Description("Credentials of the Teams Global Admin"), EmbeddedInstance("MSFT_Credential")] String GlobalAdminAccount;
[Required, Description("Credentials of the Teams Global Admin."), EmbeddedInstance("MSFT_Credential")] String GlobalAdminAccount;
};

Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ function Test-TargetResource
[Parameter()]
[System.Boolean]
$ShowInTeamsSearchAndSuggestions,

[Parameter()]
[ValidateSet("Present", "Absent")]
[System.String]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class MSFT_TeamsTeam : OMI_BaseResource
[Write, Description("Allow guests to create and update channels in Team.")] Boolean AllowGuestCreateUpdateChannels;
[Write, Description("Allow guests to delete channel in Team.")] Boolean AllowGuestDeleteChannels;
[Write, Description("Allow members to create and update channels within Team.")] Boolean AllowCreateUpdateChannels;
[Write, Description("determines whether or not private teams should be searchable from Teams clients for users who do not belong to that team. Set to $false to make those teams not discoverable from Teams clients..")] Boolean ShowInTeamsSearchAndSuggestions;
[Write, Description("determines whether or not private teams should be searchable from Teams clients for users who do not belong to that team. Set to $false to make those teams not discoverable from Teams clients.")] Boolean ShowInTeamsSearchAndSuggestions;
[Write, Description("Present ensures the Team exists, absent ensures it is removed."), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure;
[Write, Description("Credentials of the SharePoint Global Admin"), EmbeddedInstance("MSFT_Credential")] String GlobalAdminAccount;
[Write, Description("Id of the Azure Active Directory application to authenticate with.")] String ApplicationId;
Expand Down

0 comments on commit a4d9b0e

Please sign in to comment.