1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// SharedPCConfiguration This topic provides descriptions of the declared methods, properties and relationships exposed by the sharedPCConfiguration resource.
type SharedPCConfiguration struct {
// DeviceConfiguration is the base model of SharedPCConfiguration
DeviceConfiguration
// AccountManagerPolicy Specifies how accounts are managed on a shared PC. Only applies when disableAccountManager is false.
AccountManagerPolicy *SharedPCAccountManagerPolicy `json:"accountManagerPolicy,omitempty"`
// AllowedAccounts Indicates which type of accounts are allowed to use on a shared PC.
AllowedAccounts *SharedPCAllowedAccountType `json:"allowedAccounts,omitempty"`
// LocalStorage Specifies whether local storage is allowed on a shared PC.
LocalStorage *Enablement `json:"localStorage,omitempty"`
// AllowLocalStorage Specifies whether local storage is allowed on a shared PC.
AllowLocalStorage *bool `json:"allowLocalStorage,omitempty"`
// SetAccountManager Disables the account manager for shared PC mode.
SetAccountManager *Enablement `json:"setAccountManager,omitempty"`
// DisableAccountManager Disables the account manager for shared PC mode.
DisableAccountManager *bool `json:"disableAccountManager,omitempty"`
// SetEduPolicies Specifies whether the default shared PC education environment policies should be enabled/disabled/not configured. For Windows 10 RS2 and later, this policy will be applied without setting Enabled to true.
SetEduPolicies *Enablement `json:"setEduPolicies,omitempty"`
// DisableEduPolicies Specifies whether the default shared PC education environment policies should be disabled. For Windows 10 RS2 and later, this policy will be applied without setting Enabled to true.
DisableEduPolicies *bool `json:"disableEduPolicies,omitempty"`
// SetPowerPolicies Specifies whether the default shared PC power policies should be enabled/disabled.
SetPowerPolicies *Enablement `json:"setPowerPolicies,omitempty"`
// DisablePowerPolicies Specifies whether the default shared PC power policies should be disabled.
DisablePowerPolicies *bool `json:"disablePowerPolicies,omitempty"`
// SignInOnResume Specifies the requirement to sign in whenever the device wakes up from sleep mode.
SignInOnResume *Enablement `json:"signInOnResume,omitempty"`
// DisableSignInOnResume Disables the requirement to sign in whenever the device wakes up from sleep mode.
DisableSignInOnResume *bool `json:"disableSignInOnResume,omitempty"`
// Enabled Enables shared PC mode and applies the shared pc policies.
Enabled *bool `json:"enabled,omitempty"`
// IdleTimeBeforeSleepInSeconds Specifies the time in seconds that a device must sit idle before the PC goes to sleep. Setting this value to 0 prevents the sleep timeout from occurring.
IdleTimeBeforeSleepInSeconds *int `json:"idleTimeBeforeSleepInSeconds,omitempty"`
// KioskAppDisplayName Specifies the display text for the account shown on the sign-in screen which launches the app specified by SetKioskAppUserModelId. Only applies when KioskAppUserModelId is set.
KioskAppDisplayName *string `json:"kioskAppDisplayName,omitempty"`
// KioskAppUserModelID Specifies the application user model ID of the app to use with assigned access.
KioskAppUserModelID *string `json:"kioskAppUserModelId,omitempty"`
// MaintenanceStartTime Specifies the daily start time of maintenance hour.
MaintenanceStartTime *time.Time `json:"maintenanceStartTime,omitempty"`
// FastFirstSignIn Specifies whether to auto connect new non-admin Azure AD accounts to pre-configured candidate local accounts
FastFirstSignIn *Enablement `json:"fastFirstSignIn,omitempty"`
}
|