Skip to content

Commit 7d4cfaf

Browse files
Update generated files with build 1145802 (#162)
1 parent b71ee60 commit 7d4cfaf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+4059
-362
lines changed

src/Model/Alert.php

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -480,6 +480,34 @@ public function setFileStates($val)
480480
}
481481

482482

483+
/**
484+
* Gets the historyStates
485+
*
486+
* @return array The historyStates
487+
*/
488+
public function getHistoryStates()
489+
{
490+
if (array_key_exists("historyStates", $this->_propDict)) {
491+
return $this->_propDict["historyStates"];
492+
} else {
493+
return null;
494+
}
495+
}
496+
497+
/**
498+
* Sets the historyStates
499+
*
500+
* @param AlertHistoryState $val The historyStates
501+
*
502+
* @return Alert
503+
*/
504+
public function setHistoryStates($val)
505+
{
506+
$this->_propDict["historyStates"] = $val;
507+
return $this;
508+
}
509+
510+
483511
/**
484512
* Gets the hostStates
485513
* Security-related stateful information generated by the provider about the host(s) related to this alert.

src/Model/AlertHistoryState.php

Lines changed: 225 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,225 @@
1+
<?php
2+
/**
3+
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
4+
*
5+
* AlertHistoryState File
6+
* PHP version 7
7+
*
8+
* @category Library
9+
* @package Microsoft.Graph
10+
* @copyright © Microsoft Corporation. All rights reserved.
11+
* @license https://opensource.org/licenses/MIT MIT License
12+
* @version GIT: 1.4.0
13+
* @link https://graph.microsoft.io/
14+
*/
15+
namespace Microsoft\Graph\Model;
16+
/**
17+
* AlertHistoryState class
18+
*
19+
* @category Model
20+
* @package Microsoft.Graph
21+
* @copyright © Microsoft Corporation. All rights reserved.
22+
* @license https://opensource.org/licenses/MIT MIT License
23+
* @version Release: 1.4.0
24+
* @link https://graph.microsoft.io/
25+
*/
26+
class AlertHistoryState extends Entity
27+
{
28+
/**
29+
* Gets the appId
30+
*
31+
* @return string The appId
32+
*/
33+
public function getAppId()
34+
{
35+
if (array_key_exists("appId", $this->_propDict)) {
36+
return $this->_propDict["appId"];
37+
} else {
38+
return null;
39+
}
40+
}
41+
42+
/**
43+
* Sets the appId
44+
*
45+
* @param string $val The value of the appId
46+
*
47+
* @return AlertHistoryState
48+
*/
49+
public function setAppId($val)
50+
{
51+
$this->_propDict["appId"] = $val;
52+
return $this;
53+
}
54+
/**
55+
* Gets the assignedTo
56+
*
57+
* @return string The assignedTo
58+
*/
59+
public function getAssignedTo()
60+
{
61+
if (array_key_exists("assignedTo", $this->_propDict)) {
62+
return $this->_propDict["assignedTo"];
63+
} else {
64+
return null;
65+
}
66+
}
67+
68+
/**
69+
* Sets the assignedTo
70+
*
71+
* @param string $val The value of the assignedTo
72+
*
73+
* @return AlertHistoryState
74+
*/
75+
public function setAssignedTo($val)
76+
{
77+
$this->_propDict["assignedTo"] = $val;
78+
return $this;
79+
}
80+
/**
81+
* Gets the comments
82+
*
83+
* @return string The comments
84+
*/
85+
public function getComments()
86+
{
87+
if (array_key_exists("comments", $this->_propDict)) {
88+
return $this->_propDict["comments"];
89+
} else {
90+
return null;
91+
}
92+
}
93+
94+
/**
95+
* Sets the comments
96+
*
97+
* @param string $val The value of the comments
98+
*
99+
* @return AlertHistoryState
100+
*/
101+
public function setComments($val)
102+
{
103+
$this->_propDict["comments"] = $val;
104+
return $this;
105+
}
106+
107+
/**
108+
* Gets the feedback
109+
*
110+
* @return AlertFeedback The feedback
111+
*/
112+
public function getFeedback()
113+
{
114+
if (array_key_exists("feedback", $this->_propDict)) {
115+
if (is_a($this->_propDict["feedback"], "Microsoft\Graph\Model\AlertFeedback")) {
116+
return $this->_propDict["feedback"];
117+
} else {
118+
$this->_propDict["feedback"] = new AlertFeedback($this->_propDict["feedback"]);
119+
return $this->_propDict["feedback"];
120+
}
121+
}
122+
return null;
123+
}
124+
125+
/**
126+
* Sets the feedback
127+
*
128+
* @param AlertFeedback $val The value to assign to the feedback
129+
*
130+
* @return AlertHistoryState The AlertHistoryState
131+
*/
132+
public function setFeedback($val)
133+
{
134+
$this->_propDict["feedback"] = $val;
135+
return $this;
136+
}
137+
138+
/**
139+
* Gets the status
140+
*
141+
* @return AlertStatus The status
142+
*/
143+
public function getStatus()
144+
{
145+
if (array_key_exists("status", $this->_propDict)) {
146+
if (is_a($this->_propDict["status"], "Microsoft\Graph\Model\AlertStatus")) {
147+
return $this->_propDict["status"];
148+
} else {
149+
$this->_propDict["status"] = new AlertStatus($this->_propDict["status"]);
150+
return $this->_propDict["status"];
151+
}
152+
}
153+
return null;
154+
}
155+
156+
/**
157+
* Sets the status
158+
*
159+
* @param AlertStatus $val The value to assign to the status
160+
*
161+
* @return AlertHistoryState The AlertHistoryState
162+
*/
163+
public function setStatus($val)
164+
{
165+
$this->_propDict["status"] = $val;
166+
return $this;
167+
}
168+
169+
/**
170+
* Gets the updatedDateTime
171+
*
172+
* @return \DateTime The updatedDateTime
173+
*/
174+
public function getUpdatedDateTime()
175+
{
176+
if (array_key_exists("updatedDateTime", $this->_propDict)) {
177+
if (is_a($this->_propDict["updatedDateTime"], "Microsoft\Graph\Model\\DateTime")) {
178+
return $this->_propDict["updatedDateTime"];
179+
} else {
180+
$this->_propDict["updatedDateTime"] = new \DateTime($this->_propDict["updatedDateTime"]);
181+
return $this->_propDict["updatedDateTime"];
182+
}
183+
}
184+
return null;
185+
}
186+
187+
/**
188+
* Sets the updatedDateTime
189+
*
190+
* @param \DateTime $val The value to assign to the updatedDateTime
191+
*
192+
* @return AlertHistoryState The AlertHistoryState
193+
*/
194+
public function setUpdatedDateTime($val)
195+
{
196+
$this->_propDict["updatedDateTime"] = $val;
197+
return $this;
198+
}
199+
/**
200+
* Gets the user
201+
*
202+
* @return string The user
203+
*/
204+
public function getUser()
205+
{
206+
if (array_key_exists("user", $this->_propDict)) {
207+
return $this->_propDict["user"];
208+
} else {
209+
return null;
210+
}
211+
}
212+
213+
/**
214+
* Sets the user
215+
*
216+
* @param string $val The value of the user
217+
*
218+
* @return AlertHistoryState
219+
*/
220+
public function setUser($val)
221+
{
222+
$this->_propDict["user"] = $val;
223+
return $this;
224+
}
225+
}

src/Model/AndroidCompliancePolicy.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public function setPasswordMinutesOfInactivityBeforeLock($val)
148148

149149
/**
150150
* Gets the passwordExpirationDays
151-
* Number of days before the password expires. Valid values 1 to 65535
151+
* Number of days before the password expires. Valid values 1 to 365
152152
*
153153
* @return int The passwordExpirationDays
154154
*/
@@ -163,7 +163,7 @@ public function getPasswordExpirationDays()
163163

164164
/**
165165
* Sets the passwordExpirationDays
166-
* Number of days before the password expires. Valid values 1 to 65535
166+
* Number of days before the password expires. Valid values 1 to 365
167167
*
168168
* @param int $val The passwordExpirationDays
169169
*
@@ -177,7 +177,7 @@ public function setPasswordExpirationDays($val)
177177

178178
/**
179179
* Gets the passwordPreviousPasswordBlockCount
180-
* Number of previous passwords to block.
180+
* Number of previous passwords to block. Valid values 1 to 24
181181
*
182182
* @return int The passwordPreviousPasswordBlockCount
183183
*/
@@ -192,7 +192,7 @@ public function getPasswordPreviousPasswordBlockCount()
192192

193193
/**
194194
* Sets the passwordPreviousPasswordBlockCount
195-
* Number of previous passwords to block.
195+
* Number of previous passwords to block. Valid values 1 to 24
196196
*
197197
* @param int $val The passwordPreviousPasswordBlockCount
198198
*

src/Model/AndroidGeneralDeviceConfiguration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -759,7 +759,7 @@ public function setPasswordPreviousPasswordBlockCount($val)
759759

760760
/**
761761
* Gets the passwordSignInFailureCountBeforeFactoryReset
762-
* Number of sign in failures allowed before factory reset. Valid values 4 to 11
762+
* Number of sign in failures allowed before factory reset. Valid values 1 to 16
763763
*
764764
* @return int The passwordSignInFailureCountBeforeFactoryReset
765765
*/
@@ -774,7 +774,7 @@ public function getPasswordSignInFailureCountBeforeFactoryReset()
774774

775775
/**
776776
* Sets the passwordSignInFailureCountBeforeFactoryReset
777-
* Number of sign in failures allowed before factory reset. Valid values 4 to 11
777+
* Number of sign in failures allowed before factory reset. Valid values 1 to 16
778778
*
779779
* @param int $val The passwordSignInFailureCountBeforeFactoryReset
780780
*

src/Model/AndroidWorkProfileCompliancePolicy.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ public function setPasswordExpirationDays($val)
177177

178178
/**
179179
* Gets the passwordPreviousPasswordBlockCount
180-
* Number of previous passwords to block.
180+
* Number of previous passwords to block. Valid values 1 to 24
181181
*
182182
* @return int The passwordPreviousPasswordBlockCount
183183
*/
@@ -192,7 +192,7 @@ public function getPasswordPreviousPasswordBlockCount()
192192

193193
/**
194194
* Sets the passwordPreviousPasswordBlockCount
195-
* Number of previous passwords to block.
195+
* Number of previous passwords to block. Valid values 1 to 24
196196
*
197197
* @param int $val The passwordPreviousPasswordBlockCount
198198
*

src/Model/AndroidWorkProfileGeneralDeviceConfiguration.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ public function setPasswordPreviousPasswordBlockCount($val)
202202

203203
/**
204204
* Gets the passwordSignInFailureCountBeforeFactoryReset
205-
* Number of sign in failures allowed before factory reset. Valid values 4 to 11
205+
* Number of sign in failures allowed before factory reset. Valid values 1 to 16
206206
*
207207
* @return int The passwordSignInFailureCountBeforeFactoryReset
208208
*/
@@ -217,7 +217,7 @@ public function getPasswordSignInFailureCountBeforeFactoryReset()
217217

218218
/**
219219
* Sets the passwordSignInFailureCountBeforeFactoryReset
220-
* Number of sign in failures allowed before factory reset. Valid values 4 to 11
220+
* Number of sign in failures allowed before factory reset. Valid values 1 to 16
221221
*
222222
* @param int $val The passwordSignInFailureCountBeforeFactoryReset
223223
*
@@ -910,7 +910,7 @@ public function setWorkProfilePasswordPreviousPasswordBlockCount($val)
910910

911911
/**
912912
* Gets the workProfilePasswordSignInFailureCountBeforeFactoryReset
913-
* Number of sign in failures allowed before work profile is removed and all corporate data deleted. Valid values 4 to 11
913+
* Number of sign in failures allowed before work profile is removed and all corporate data deleted. Valid values 1 to 16
914914
*
915915
* @return int The workProfilePasswordSignInFailureCountBeforeFactoryReset
916916
*/
@@ -925,7 +925,7 @@ public function getWorkProfilePasswordSignInFailureCountBeforeFactoryReset()
925925

926926
/**
927927
* Sets the workProfilePasswordSignInFailureCountBeforeFactoryReset
928-
* Number of sign in failures allowed before work profile is removed and all corporate data deleted. Valid values 4 to 11
928+
* Number of sign in failures allowed before work profile is removed and all corporate data deleted. Valid values 1 to 16
929929
*
930930
* @param int $val The workProfilePasswordSignInFailureCountBeforeFactoryReset
931931
*

src/Model/AttendeeAvailability.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class AttendeeAvailability extends Entity
2828

2929
/**
3030
* Gets the attendee
31-
* The type of attendee - whether it's a person or a resource, and whether required or optional if it's a person.
31+
* The email address and type of attendee - whether it's a person or a resource, and whether required or optional if it's a person.
3232
*
3333
* @return AttendeeBase The attendee
3434
*/
@@ -47,7 +47,7 @@ public function getAttendee()
4747

4848
/**
4949
* Sets the attendee
50-
* The type of attendee - whether it's a person or a resource, and whether required or optional if it's a person.
50+
* The email address and type of attendee - whether it's a person or a resource, and whether required or optional if it's a person.
5151
*
5252
* @param AttendeeBase $val The value to assign to the attendee
5353
*

0 commit comments

Comments
 (0)