Skip to content

Commit 4b450b0

Browse files
authored
Merge pull request #1286 from microsoftgraph/dev
Release 1.102.0
2 parents 71a41f6 + fc24a12 commit 4b450b0

File tree

254 files changed

+26315
-898
lines changed

Some content is hidden

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

254 files changed

+26315
-898
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ You can install the PHP SDK with Composer, either run `composer require microsof
1111
```
1212
{
1313
"require": {
14-
"microsoft/microsoft-graph": "^1.101.0"
14+
"microsoft/microsoft-graph": "^1.102.0"
1515
}
1616
}
1717
```

src/Beta/Microsoft/Graph/CallRecords/Model/PstnCallLogRow.php

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,118 @@ public function setCharge($val)
202202
return $this;
203203
}
204204
/**
205+
* Gets the clientLocalIpV4Address
206+
* Local IPv4 of the client that is retrieved from the operating system of the client.
207+
*
208+
* @return string|null The clientLocalIpV4Address
209+
*/
210+
public function getClientLocalIpV4Address()
211+
{
212+
if (array_key_exists("clientLocalIpV4Address", $this->_propDict)) {
213+
return $this->_propDict["clientLocalIpV4Address"];
214+
} else {
215+
return null;
216+
}
217+
}
218+
219+
/**
220+
* Sets the clientLocalIpV4Address
221+
* Local IPv4 of the client that is retrieved from the operating system of the client.
222+
*
223+
* @param string $val The value of the clientLocalIpV4Address
224+
*
225+
* @return PstnCallLogRow
226+
*/
227+
public function setClientLocalIpV4Address($val)
228+
{
229+
$this->_propDict["clientLocalIpV4Address"] = $val;
230+
return $this;
231+
}
232+
/**
233+
* Gets the clientLocalIpV6Address
234+
* Local IPv6 of the client that is retrieved from the operating system of the client.
235+
*
236+
* @return string|null The clientLocalIpV6Address
237+
*/
238+
public function getClientLocalIpV6Address()
239+
{
240+
if (array_key_exists("clientLocalIpV6Address", $this->_propDict)) {
241+
return $this->_propDict["clientLocalIpV6Address"];
242+
} else {
243+
return null;
244+
}
245+
}
246+
247+
/**
248+
* Sets the clientLocalIpV6Address
249+
* Local IPv6 of the client that is retrieved from the operating system of the client.
250+
*
251+
* @param string $val The value of the clientLocalIpV6Address
252+
*
253+
* @return PstnCallLogRow
254+
*/
255+
public function setClientLocalIpV6Address($val)
256+
{
257+
$this->_propDict["clientLocalIpV6Address"] = $val;
258+
return $this;
259+
}
260+
/**
261+
* Gets the clientPublicIpV4Address
262+
* Public IPv4 of the client that can be used to determine the location of the client.
263+
*
264+
* @return string|null The clientPublicIpV4Address
265+
*/
266+
public function getClientPublicIpV4Address()
267+
{
268+
if (array_key_exists("clientPublicIpV4Address", $this->_propDict)) {
269+
return $this->_propDict["clientPublicIpV4Address"];
270+
} else {
271+
return null;
272+
}
273+
}
274+
275+
/**
276+
* Sets the clientPublicIpV4Address
277+
* Public IPv4 of the client that can be used to determine the location of the client.
278+
*
279+
* @param string $val The value of the clientPublicIpV4Address
280+
*
281+
* @return PstnCallLogRow
282+
*/
283+
public function setClientPublicIpV4Address($val)
284+
{
285+
$this->_propDict["clientPublicIpV4Address"] = $val;
286+
return $this;
287+
}
288+
/**
289+
* Gets the clientPublicIpV6Address
290+
* Public IPv6 of the client that can be used to determine the location of the client.
291+
*
292+
* @return string|null The clientPublicIpV6Address
293+
*/
294+
public function getClientPublicIpV6Address()
295+
{
296+
if (array_key_exists("clientPublicIpV6Address", $this->_propDict)) {
297+
return $this->_propDict["clientPublicIpV6Address"];
298+
} else {
299+
return null;
300+
}
301+
}
302+
303+
/**
304+
* Sets the clientPublicIpV6Address
305+
* Public IPv6 of the client that can be used to determine the location of the client.
306+
*
307+
* @param string $val The value of the clientPublicIpV6Address
308+
*
309+
* @return PstnCallLogRow
310+
*/
311+
public function setClientPublicIpV6Address($val)
312+
{
313+
$this->_propDict["clientPublicIpV6Address"] = $val;
314+
return $this;
315+
}
316+
/**
205317
* Gets the conferenceId
206318
* ID of the audio conference.
207319
*

src/Beta/Microsoft/Graph/ManagedTenants/Model/CredentialUserRegistrationsSummary.php

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,33 @@ public function setTenantId($val)
318318
return $this;
319319
}
320320

321+
/**
322+
* Gets the tenantLicenseType
323+
*
324+
* @return string|null The tenantLicenseType
325+
*/
326+
public function getTenantLicenseType()
327+
{
328+
if (array_key_exists("tenantLicenseType", $this->_propDict)) {
329+
return $this->_propDict["tenantLicenseType"];
330+
} else {
331+
return null;
332+
}
333+
}
334+
335+
/**
336+
* Sets the tenantLicenseType
337+
*
338+
* @param string $val The tenantLicenseType
339+
*
340+
* @return CredentialUserRegistrationsSummary
341+
*/
342+
public function setTenantLicenseType($val)
343+
{
344+
$this->_propDict["tenantLicenseType"] = $val;
345+
return $this;
346+
}
347+
321348
/**
322349
* Gets the totalUserCount
323350
* The total number of users in the given managed tenant. Optional. Read-only.

src/Beta/Microsoft/Graph/Model/AccessPackageSubject.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ class AccessPackageSubject extends Entity
2626
{
2727
/**
2828
* Gets the altSecId
29+
* Not Supported.
2930
*
3031
* @return string|null The altSecId
3132
*/
@@ -40,6 +41,7 @@ public function getAltSecId()
4041

4142
/**
4243
* Sets the altSecId
44+
* Not Supported.
4345
*
4446
* @param string $val The altSecId
4547
*
@@ -140,7 +142,7 @@ public function setEmail($val)
140142

141143
/**
142144
* Gets the objectId
143-
* The object identifier of the subject. null if the subject is not yet a user in the tenant.
145+
* The object identifier of the subject. null if the subject is not yet a user in the tenant. Alternate key.
144146
*
145147
* @return string|null The objectId
146148
*/
@@ -155,7 +157,7 @@ public function getObjectId()
155157

156158
/**
157159
* Sets the objectId
158-
* The object identifier of the subject. null if the subject is not yet a user in the tenant.
160+
* The object identifier of the subject. null if the subject is not yet a user in the tenant. Alternate key.
159161
*
160162
* @param string $val The objectId
161163
*
@@ -225,6 +227,7 @@ public function setPrincipalName($val)
225227

226228
/**
227229
* Gets the subjectLifecycle
230+
* The lifecycle of the subject user, if a guest. The possible values are: notDefined, notGoverned, governed, unknownFutureValue.
228231
*
229232
* @return AccessPackageSubjectLifecycle|null The subjectLifecycle
230233
*/
@@ -243,6 +246,7 @@ public function getSubjectLifecycle()
243246

244247
/**
245248
* Sets the subjectLifecycle
249+
* The lifecycle of the subject user, if a guest. The possible values are: notDefined, notGoverned, governed, unknownFutureValue.
246250
*
247251
* @param AccessPackageSubjectLifecycle $val The subjectLifecycle
248252
*
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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+
* AccountsWithAccess File
6+
* PHP version 7
7+
*
8+
* @category Library
9+
* @package Microsoft.Graph
10+
* @copyright (c) Microsoft Corporation. All rights reserved.
11+
* @license https://opensource.org/licenses/MIT MIT License
12+
* @link https://graph.microsoft.com
13+
*/
14+
namespace Beta\Microsoft\Graph\Model;
15+
/**
16+
* AccountsWithAccess class
17+
*
18+
* @category Model
19+
* @package Microsoft.Graph
20+
* @copyright (c) Microsoft Corporation. All rights reserved.
21+
* @license https://opensource.org/licenses/MIT MIT License
22+
* @link https://graph.microsoft.com
23+
*/
24+
class AccountsWithAccess extends Entity
25+
{
26+
}
Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
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+
* ActionSummary File
6+
* PHP version 7
7+
*
8+
* @category Library
9+
* @package Microsoft.Graph
10+
* @copyright (c) Microsoft Corporation. All rights reserved.
11+
* @license https://opensource.org/licenses/MIT MIT License
12+
* @link https://graph.microsoft.com
13+
*/
14+
namespace Beta\Microsoft\Graph\Model;
15+
/**
16+
* ActionSummary class
17+
*
18+
* @category Model
19+
* @package Microsoft.Graph
20+
* @copyright (c) Microsoft Corporation. All rights reserved.
21+
* @license https://opensource.org/licenses/MIT MIT License
22+
* @link https://graph.microsoft.com
23+
*/
24+
class ActionSummary extends Entity
25+
{
26+
/**
27+
* Gets the assigned
28+
*
29+
* @return int|null The assigned
30+
*/
31+
public function getAssigned()
32+
{
33+
if (array_key_exists("assigned", $this->_propDict)) {
34+
return $this->_propDict["assigned"];
35+
} else {
36+
return null;
37+
}
38+
}
39+
40+
/**
41+
* Sets the assigned
42+
*
43+
* @param int $val The value of the assigned
44+
*
45+
* @return ActionSummary
46+
*/
47+
public function setAssigned($val)
48+
{
49+
$this->_propDict["assigned"] = $val;
50+
return $this;
51+
}
52+
/**
53+
* Gets the available
54+
*
55+
* @return int|null The available
56+
*/
57+
public function getAvailable()
58+
{
59+
if (array_key_exists("available", $this->_propDict)) {
60+
return $this->_propDict["available"];
61+
} else {
62+
return null;
63+
}
64+
}
65+
66+
/**
67+
* Sets the available
68+
*
69+
* @param int $val The value of the available
70+
*
71+
* @return ActionSummary
72+
*/
73+
public function setAvailable($val)
74+
{
75+
$this->_propDict["available"] = $val;
76+
return $this;
77+
}
78+
/**
79+
* Gets the exercised
80+
*
81+
* @return int|null The exercised
82+
*/
83+
public function getExercised()
84+
{
85+
if (array_key_exists("exercised", $this->_propDict)) {
86+
return $this->_propDict["exercised"];
87+
} else {
88+
return null;
89+
}
90+
}
91+
92+
/**
93+
* Sets the exercised
94+
*
95+
* @param int $val The value of the exercised
96+
*
97+
* @return ActionSummary
98+
*/
99+
public function setExercised($val)
100+
{
101+
$this->_propDict["exercised"] = $val;
102+
return $this;
103+
}
104+
}

0 commit comments

Comments
 (0)