From 795a8705c3fdc5bf55e83d382e7d3ff233896a0b Mon Sep 17 00:00:00 2001 From: Wim Date: Thu, 26 Dec 2019 23:12:28 +0100 Subject: Add initial Microsoft Teams support Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup --- .../beta/GroupPolicyDefinitionFileModel.go | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyDefinitionFileModel.go (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyDefinitionFileModel.go') diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyDefinitionFileModel.go b/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyDefinitionFileModel.go new file mode 100644 index 00000000..780a9a3b --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyDefinitionFileModel.go @@ -0,0 +1,29 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +import "time" + +// GroupPolicyDefinitionFile The entity represents an ADMX (Administrative Template) XML file. The ADMX file contains a collection of group policy definitions and their locations by category path. The group policy definition file also contains the languages supported as determined by the language dependent ADML (Administrative Template) language files. +type GroupPolicyDefinitionFile struct { + // Entity is the base model of GroupPolicyDefinitionFile + Entity + // DisplayName The localized friendly name of the ADMX file. + DisplayName *string `json:"displayName,omitempty"` + // Description The localized description of the policy settings in the ADMX file. The default value is empty. + Description *string `json:"description,omitempty"` + // LanguageCodes The supported language codes for the ADMX file. + LanguageCodes []string `json:"languageCodes,omitempty"` + // TargetPrefix Specifies the logical name that refers to the namespace within the ADMX file. + TargetPrefix *string `json:"targetPrefix,omitempty"` + // TargetNamespace Specifies the URI used to identify the namespace within the ADMX file. + TargetNamespace *string `json:"targetNamespace,omitempty"` + // PolicyType Specifies the type of group policy. + PolicyType *GroupPolicyType `json:"policyType,omitempty"` + // Revision The revision version associated with the file. + Revision *string `json:"revision,omitempty"` + // LastModifiedDateTime The date and time the entity was last modified. + LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"` + // Definitions undocumented + Definitions []GroupPolicyDefinition `json:"definitions,omitempty"` +} -- cgit v1.2.3