Skip to content

Commit

Permalink
Merge pull request #276 from microsoftgraph/dev
Browse files Browse the repository at this point in the history
Release 2.6.0
  • Loading branch information
SilasKenneth authored Apr 24, 2024
2 parents dd8e254 + 4438ff8 commit 37fed26
Show file tree
Hide file tree
Showing 7,286 changed files with 13,285 additions and 17,032 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ You can install the Beta PHP SDK with Composer by editing your `composer.json` f
```
{
"require": {
"microsoft/microsoft-graph-beta": "^2.5.0"
"microsoft/microsoft-graph-beta": "^2.6.0"
}
}
```
Expand Down
4 changes: 2 additions & 2 deletions src/Generated/AccessReviews/AccessReviewsRequestBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
* @param AccessReviewsRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<AccessReviewCollectionResponse|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/accessreview-list?view=graph-rest-1.0 Find more info here
* @link https://learn.microsoft.com/graph/api/accessreview-list?view=graph-rest-beta Find more info here
*/
public function get(?AccessReviewsRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toGetRequestInformation($requestConfiguration);
Expand All @@ -72,7 +72,7 @@ public function get(?AccessReviewsRequestBuilderGetRequestConfiguration $request
* @param AccessReviewsRequestBuilderPostRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<AccessReview|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/accessreview-create?view=graph-rest-1.0 Find more info here
* @link https://learn.microsoft.com/graph/api/accessreview-create?view=graph-rest-beta Find more info here
*/
public function post(AccessReview $body, ?AccessReviewsRequestBuilderPostRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toPostRequestInformation($body, $requestConfiguration);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
* @param AccessReviewItemRequestBuilderDeleteRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<void|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/accessreview-delete?view=graph-rest-1.0 Find more info here
* @link https://learn.microsoft.com/graph/api/accessreview-delete?view=graph-rest-beta Find more info here
*/
public function delete(?AccessReviewItemRequestBuilderDeleteRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toDeleteRequestInformation($requestConfiguration);
Expand All @@ -114,7 +114,7 @@ public function delete(?AccessReviewItemRequestBuilderDeleteRequestConfiguration
* @param AccessReviewItemRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<AccessReview|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/accessreview-get?view=graph-rest-1.0 Find more info here
* @link https://learn.microsoft.com/graph/api/accessreview-get?view=graph-rest-beta Find more info here
*/
public function get(?AccessReviewItemRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toGetRequestInformation($requestConfiguration);
Expand All @@ -130,7 +130,7 @@ public function get(?AccessReviewItemRequestBuilderGetRequestConfiguration $requ
* @param AccessReviewItemRequestBuilderPatchRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<AccessReview|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/accessreview-update?view=graph-rest-1.0 Find more info here
* @link https://learn.microsoft.com/graph/api/accessreview-update?view=graph-rest-beta Find more info here
*/
public function patch(AccessReview $body, ?AccessReviewItemRequestBuilderPatchRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toPatchRequestInformation($body, $requestConfiguration);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
* @param ApplyDecisionsRequestBuilderPostRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<void|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/accessreview-apply?view=graph-rest-1.0 Find more info here
* @link https://learn.microsoft.com/graph/api/accessreview-apply?view=graph-rest-beta Find more info here
*/
public function post(?ApplyDecisionsRequestBuilderPostRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toPostRequestInformation($requestConfiguration);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,10 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
}

/**
* In the Microsoft Entra access reviews feature, retrieve the decisions of an accessReview object. Note that a recurring access review will not have a decisions relationship. Instead, the caller must navigate the instance relationship to find an accessReview object for a current or past instance of the access review.
* The collection of decisions for this access review.
* @param DecisionsRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<AccessReviewDecisionCollectionResponse|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/accessreview-listdecisions?view=graph-rest-1.0 Find more info here
*/
public function get(?DecisionsRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toGetRequestInformation($requestConfiguration);
Expand All @@ -82,7 +81,7 @@ public function post(AccessReviewDecision $body, ?DecisionsRequestBuilderPostReq
}

/**
* In the Microsoft Entra access reviews feature, retrieve the decisions of an accessReview object. Note that a recurring access review will not have a decisions relationship. Instead, the caller must navigate the instance relationship to find an accessReview object for a current or past instance of the access review.
* The collection of decisions for this access review.
* @param DecisionsRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return RequestInformation
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Microsoft\Kiota\Abstractions\QueryParameter;

/**
* In the Microsoft Entra access reviews feature, retrieve the decisions of an accessReview object. Note that a recurring access review will not have a decisions relationship. Instead, the caller must navigate the instance relationship to find an accessReview object for a current or past instance of the access review.
* The collection of decisions for this access review.
*/
class DecisionsRequestBuilderGetQueryParameters
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
* @param ApplyDecisionsRequestBuilderPostRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<void|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/accessreview-apply?view=graph-rest-1.0 Find more info here
* @link https://learn.microsoft.com/graph/api/accessreview-apply?view=graph-rest-beta Find more info here
*/
public function post(?ApplyDecisionsRequestBuilderPostRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toPostRequestInformation($requestConfiguration);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,10 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
}

/**
* In the Microsoft Entra access reviews feature, retrieve the decisions of an accessReview object. Note that a recurring access review will not have a decisions relationship. Instead, the caller must navigate the instance relationship to find an accessReview object for a current or past instance of the access review.
* The collection of decisions for this access review.
* @param DecisionsRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<AccessReviewDecisionCollectionResponse|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/accessreview-listdecisions?view=graph-rest-1.0 Find more info here
*/
public function get(?DecisionsRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toGetRequestInformation($requestConfiguration);
Expand All @@ -82,7 +81,7 @@ public function post(AccessReviewDecision $body, ?DecisionsRequestBuilderPostReq
}

/**
* In the Microsoft Entra access reviews feature, retrieve the decisions of an accessReview object. Note that a recurring access review will not have a decisions relationship. Instead, the caller must navigate the instance relationship to find an accessReview object for a current or past instance of the access review.
* The collection of decisions for this access review.
* @param DecisionsRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return RequestInformation
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Microsoft\Kiota\Abstractions\QueryParameter;

/**
* In the Microsoft Entra access reviews feature, retrieve the decisions of an accessReview object. Note that a recurring access review will not have a decisions relationship. Instead, the caller must navigate the instance relationship to find an accessReview object for a current or past instance of the access review.
* The collection of decisions for this access review.
*/
class DecisionsRequestBuilderGetQueryParameters
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,10 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
}

/**
* In the Microsoft Entra access reviews feature, retrieve the decisions of an accessReview object for the calling user as reviewer.
* The collection of decisions for the caller, if the caller is a reviewer.
* @param MyDecisionsRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<AccessReviewDecisionCollectionResponse|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/accessreview-listmydecisions?view=graph-rest-1.0 Find more info here
*/
public function get(?MyDecisionsRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toGetRequestInformation($requestConfiguration);
Expand All @@ -82,7 +81,7 @@ public function post(AccessReviewDecision $body, ?MyDecisionsRequestBuilderPostR
}

/**
* In the Microsoft Entra access reviews feature, retrieve the decisions of an accessReview object for the calling user as reviewer.
* The collection of decisions for the caller, if the caller is a reviewer.
* @param MyDecisionsRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return RequestInformation
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Microsoft\Kiota\Abstractions\QueryParameter;

/**
* In the Microsoft Entra access reviews feature, retrieve the decisions of an accessReview object for the calling user as reviewer.
* The collection of decisions for the caller, if the caller is a reviewer.
*/
class MyDecisionsRequestBuilderGetQueryParameters
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
* @param ResetDecisionsRequestBuilderPostRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<void|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/accessreview-reset?view=graph-rest-1.0 Find more info here
* @link https://learn.microsoft.com/graph/api/accessreview-reset?view=graph-rest-beta Find more info here
*/
public function post(?ResetDecisionsRequestBuilderPostRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toPostRequestInformation($requestConfiguration);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,10 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
}

/**
* In the Microsoft Entra access reviews feature, update an existing accessReview object to remove a user as a reviewer. This operation is only permitted for an access review that isn't yet completed, and only for an access review where the reviewers are explicitly specified. This operation isn't permitted for an access review in which users review their own access, and not intended for an access review in which the group owners are assigned as the reviewers.
* Delete navigation property reviewers for accessReviews
* @param AccessReviewReviewerItemRequestBuilderDeleteRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<void|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/accessreview-removereviewer?view=graph-rest-1.0 Find more info here
*/
public function delete(?AccessReviewReviewerItemRequestBuilderDeleteRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toDeleteRequestInformation($requestConfiguration);
Expand Down Expand Up @@ -75,7 +74,7 @@ public function patch(AccessReviewReviewer $body, ?AccessReviewReviewerItemReque
}

/**
* In the Microsoft Entra access reviews feature, update an existing accessReview object to remove a user as a reviewer. This operation is only permitted for an access review that isn't yet completed, and only for an access review where the reviewers are explicitly specified. This operation isn't permitted for an access review in which users review their own access, and not intended for an access review in which the group owners are assigned as the reviewers.
* Delete navigation property reviewers for accessReviews
* @param AccessReviewReviewerItemRequestBuilderDeleteRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return RequestInformation
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,10 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
}

/**
* In the Microsoft Entra access reviews feature, retrieve the reviewers of an accessReview object.
* The collection of reviewers for an access review, if access review reviewerType is of type delegated.
* @param ReviewersRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<AccessReviewReviewerCollectionResponse|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/accessreview-listreviewers?view=graph-rest-1.0 Find more info here
*/
public function get(?ReviewersRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toGetRequestInformation($requestConfiguration);
Expand All @@ -67,12 +66,11 @@ public function get(?ReviewersRequestBuilderGetRequestConfiguration $requestConf
}

/**
* In the Microsoft Entra access reviews feature, update an existing accessReview object to add another user as a reviewer. This operation is only permitted for an access review that isn't yet completed, and only for an access review where the reviewers are explicitly specified. This operation isn't permitted for an access review in which users review their own access, and not intended for an access review in which the group owners are assigned as the reviewers.
* Create new navigation property to reviewers for accessReviews
* @param AccessReviewReviewer $body The request body
* @param ReviewersRequestBuilderPostRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<AccessReviewReviewer|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/accessreview-addreviewer?view=graph-rest-1.0 Find more info here
*/
public function post(AccessReviewReviewer $body, ?ReviewersRequestBuilderPostRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toPostRequestInformation($body, $requestConfiguration);
Expand All @@ -83,7 +81,7 @@ public function post(AccessReviewReviewer $body, ?ReviewersRequestBuilderPostReq
}

/**
* In the Microsoft Entra access reviews feature, retrieve the reviewers of an accessReview object.
* The collection of reviewers for an access review, if access review reviewerType is of type delegated.
* @param ReviewersRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return RequestInformation
*/
Expand All @@ -104,7 +102,7 @@ public function toGetRequestInformation(?ReviewersRequestBuilderGetRequestConfig
}

/**
* In the Microsoft Entra access reviews feature, update an existing accessReview object to add another user as a reviewer. This operation is only permitted for an access review that isn't yet completed, and only for an access review where the reviewers are explicitly specified. This operation isn't permitted for an access review in which users review their own access, and not intended for an access review in which the group owners are assigned as the reviewers.
* Create new navigation property to reviewers for accessReviews
* @param AccessReviewReviewer $body The request body
* @param ReviewersRequestBuilderPostRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return RequestInformation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Microsoft\Kiota\Abstractions\QueryParameter;

/**
* In the Microsoft Entra access reviews feature, retrieve the reviewers of an accessReview object.
* The collection of reviewers for an access review, if access review reviewerType is of type delegated.
*/
class ReviewersRequestBuilderGetQueryParameters
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
* @param SendReminderRequestBuilderPostRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<void|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/accessreview-sendreminder?view=graph-rest-1.0 Find more info here
* @link https://learn.microsoft.com/graph/api/accessreview-sendreminder?view=graph-rest-beta Find more info here
*/
public function post(?SendReminderRequestBuilderPostRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toPostRequestInformation($requestConfiguration);
Expand Down
Loading

0 comments on commit 37fed26

Please sign in to comment.