mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-25 20:22:03 -08:00
20 lines
1.2 KiB
Go
20 lines
1.2 KiB
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
// WindowsDomainJoinConfiguration Windows Domain Join device configuration.
|
||
|
type WindowsDomainJoinConfiguration struct {
|
||
|
// DeviceConfiguration is the base model of WindowsDomainJoinConfiguration
|
||
|
DeviceConfiguration
|
||
|
// ComputerNameStaticPrefix Fixed prefix to be used for computer name.
|
||
|
ComputerNameStaticPrefix *string `json:"computerNameStaticPrefix,omitempty"`
|
||
|
// ComputerNameSuffixRandomCharCount Dynamically generated characters used as suffix for computer name. Valid values 3 to 14
|
||
|
ComputerNameSuffixRandomCharCount *int `json:"computerNameSuffixRandomCharCount,omitempty"`
|
||
|
// ActiveDirectoryDomainName Active Directory domain name to join.
|
||
|
ActiveDirectoryDomainName *string `json:"activeDirectoryDomainName,omitempty"`
|
||
|
// OrganizationalUnit Organizational unit (OU) where the computer account will be created. If this parameter is NULL, the well known computer object container will be used as published in the domain.
|
||
|
OrganizationalUnit *string `json:"organizationalUnit,omitempty"`
|
||
|
// NetworkAccessConfigurations undocumented
|
||
|
NetworkAccessConfigurations []DeviceConfiguration `json:"networkAccessConfigurations,omitempty"`
|
||
|
}
|