diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/Windows10TeamGeneralConfigurationModel.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/Windows10TeamGeneralConfigurationModel.go | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10TeamGeneralConfigurationModel.go b/vendor/github.com/yaegashi/msgraph.go/beta/Windows10TeamGeneralConfigurationModel.go new file mode 100644 index 00000000..6a276d89 --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/Windows10TeamGeneralConfigurationModel.go @@ -0,0 +1,51 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +import "time" + +// Windows10TeamGeneralConfiguration This topic provides descriptions of the declared methods, properties and relationships exposed by the windows10TeamGeneralConfiguration resource. +type Windows10TeamGeneralConfiguration struct { + // DeviceConfiguration is the base model of Windows10TeamGeneralConfiguration + DeviceConfiguration + // AzureOperationalInsightsBlockTelemetry Indicates whether or not to Block Azure Operational Insights. + AzureOperationalInsightsBlockTelemetry *bool `json:"azureOperationalInsightsBlockTelemetry,omitempty"` + // AzureOperationalInsightsWorkspaceID The Azure Operational Insights workspace id. + AzureOperationalInsightsWorkspaceID *string `json:"azureOperationalInsightsWorkspaceId,omitempty"` + // AzureOperationalInsightsWorkspaceKey The Azure Operational Insights Workspace key. + AzureOperationalInsightsWorkspaceKey *string `json:"azureOperationalInsightsWorkspaceKey,omitempty"` + // ConnectAppBlockAutoLaunch Specifies whether to automatically launch the Connect app whenever a projection is initiated. + ConnectAppBlockAutoLaunch *bool `json:"connectAppBlockAutoLaunch,omitempty"` + // MaintenanceWindowBlocked Indicates whether or not to Block setting a maintenance window for device updates. + MaintenanceWindowBlocked *bool `json:"maintenanceWindowBlocked,omitempty"` + // MaintenanceWindowDurationInHours Maintenance window duration for device updates. Valid values 0 to 5 + MaintenanceWindowDurationInHours *int `json:"maintenanceWindowDurationInHours,omitempty"` + // MaintenanceWindowStartTime Maintenance window start time for device updates. + MaintenanceWindowStartTime *time.Time `json:"maintenanceWindowStartTime,omitempty"` + // MiracastChannel The channel. + MiracastChannel *MiracastChannel `json:"miracastChannel,omitempty"` + // MiracastBlocked Indicates whether or not to Block wireless projection. + MiracastBlocked *bool `json:"miracastBlocked,omitempty"` + // MiracastRequirePin Indicates whether or not to require a pin for wireless projection. + MiracastRequirePin *bool `json:"miracastRequirePin,omitempty"` + // SettingsBlockMyMeetingsAndFiles Specifies whether to disable the "My meetings and files" feature in the Start menu, which shows the signed-in user's meetings and files from Office 365. + SettingsBlockMyMeetingsAndFiles *bool `json:"settingsBlockMyMeetingsAndFiles,omitempty"` + // SettingsBlockSessionResume Specifies whether to allow the ability to resume a session when the session times out. + SettingsBlockSessionResume *bool `json:"settingsBlockSessionResume,omitempty"` + // SettingsBlockSigninSuggestions Specifies whether to disable auto-populating of the sign-in dialog with invitees from scheduled meetings. + SettingsBlockSigninSuggestions *bool `json:"settingsBlockSigninSuggestions,omitempty"` + // SettingsDefaultVolume Specifies the default volume value for a new session. Permitted values are 0-100. The default is 45. Valid values 0 to 100 + SettingsDefaultVolume *int `json:"settingsDefaultVolume,omitempty"` + // SettingsScreenTimeoutInMinutes Specifies the number of minutes until the Hub screen turns off. + SettingsScreenTimeoutInMinutes *int `json:"settingsScreenTimeoutInMinutes,omitempty"` + // SettingsSessionTimeoutInMinutes Specifies the number of minutes until the session times out. + SettingsSessionTimeoutInMinutes *int `json:"settingsSessionTimeoutInMinutes,omitempty"` + // SettingsSleepTimeoutInMinutes Specifies the number of minutes until the Hub enters sleep mode. + SettingsSleepTimeoutInMinutes *int `json:"settingsSleepTimeoutInMinutes,omitempty"` + // WelcomeScreenBlockAutomaticWakeUp Indicates whether or not to Block the welcome screen from waking up automatically when someone enters the room. + WelcomeScreenBlockAutomaticWakeUp *bool `json:"welcomeScreenBlockAutomaticWakeUp,omitempty"` + // WelcomeScreenBackgroundImageURL The welcome screen background image URL. The URL must use the HTTPS protocol and return a PNG image. + WelcomeScreenBackgroundImageURL *string `json:"welcomeScreenBackgroundImageUrl,omitempty"` + // WelcomeScreenMeetingInformation The welcome screen meeting information shown. + WelcomeScreenMeetingInformation *WelcomeScreenMeetingInformation `json:"welcomeScreenMeetingInformation,omitempty"` +} |