Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.8.0 #1519

Merged
merged 2 commits into from
May 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
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 PHP SDK with Composer by editing your `composer.json` file:
```
{
"require": {
"microsoft/microsoft-graph": "^2.7.0"
"microsoft/microsoft-graph": "^2.8.0"
}
}
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,11 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
}

/**
* Delete navigation property siteLists for admin
* Delete a browserSiteList object.
* @param BrowserSiteListItemRequestBuilderDeleteRequestConfiguration|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/internetexplorermode-delete-sitelists?view=graph-rest-1.0 Find more info here
*/
public function delete(?BrowserSiteListItemRequestBuilderDeleteRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toDeleteRequestInformation($requestConfiguration);
Expand All @@ -69,10 +70,11 @@ public function delete(?BrowserSiteListItemRequestBuilderDeleteRequestConfigurat
}

/**
* A collection of site lists to support Internet Explorer mode.
* Get a browserSiteList that contains browserSite and browserSharedCookie resources.
* @param BrowserSiteListItemRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<BrowserSiteList|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/browsersitelist-get?view=graph-rest-1.0 Find more info here
*/
public function get(?BrowserSiteListItemRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toGetRequestInformation($requestConfiguration);
Expand All @@ -83,11 +85,12 @@ public function get(?BrowserSiteListItemRequestBuilderGetRequestConfiguration $r
}

/**
* Update the navigation property siteLists in admin
* Update the properties of a browserSiteList object.
* @param BrowserSiteList $body The request body
* @param BrowserSiteListItemRequestBuilderPatchRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<BrowserSiteList|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/browsersitelist-update?view=graph-rest-1.0 Find more info here
*/
public function patch(BrowserSiteList $body, ?BrowserSiteListItemRequestBuilderPatchRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toPatchRequestInformation($body, $requestConfiguration);
Expand All @@ -98,7 +101,7 @@ public function patch(BrowserSiteList $body, ?BrowserSiteListItemRequestBuilderP
}

/**
* Delete navigation property siteLists for admin
* Delete a browserSiteList object.
* @param BrowserSiteListItemRequestBuilderDeleteRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return RequestInformation
*/
Expand All @@ -116,7 +119,7 @@ public function toDeleteRequestInformation(?BrowserSiteListItemRequestBuilderDel
}

/**
* A collection of site lists to support Internet Explorer mode.
* Get a browserSiteList that contains browserSite and browserSharedCookie resources.
* @param BrowserSiteListItemRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return RequestInformation
*/
Expand All @@ -137,7 +140,7 @@ public function toGetRequestInformation(?BrowserSiteListItemRequestBuilderGetReq
}

/**
* Update the navigation property siteLists in admin
* Update the properties of a browserSiteList object.
* @param BrowserSiteList $body The request body
* @param BrowserSiteListItemRequestBuilderPatchRequestConfiguration|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;

/**
* A collection of site lists to support Internet Explorer mode.
* Get a browserSiteList that contains browserSite and browserSharedCookie resources.
*/
class BrowserSiteListItemRequestBuilderGetQueryParameters
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
* @param PublishRequestBuilderPostRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<BrowserSiteList|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/browsersitelist-publish?view=graph-rest-1.0 Find more info here
*/
public function post(PublishPostRequestBody $body, ?PublishRequestBuilderPostRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toPostRequestInformation($body, $requestConfiguration);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,11 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
}

/**
* Delete navigation property sharedCookies for admin
* Delete a browserSharedCookie from a browserSiteList.
* @param BrowserSharedCookieItemRequestBuilderDeleteRequestConfiguration|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/browsersitelist-delete-sharedcookies?view=graph-rest-1.0 Find more info here
*/
public function delete(?BrowserSharedCookieItemRequestBuilderDeleteRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toDeleteRequestInformation($requestConfiguration);
Expand All @@ -45,10 +46,11 @@ public function delete(?BrowserSharedCookieItemRequestBuilderDeleteRequestConfig
}

/**
* A collection of shared cookies defined for the site list.
* Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode.
* @param BrowserSharedCookieItemRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<BrowserSharedCookie|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/browsersharedcookie-get?view=graph-rest-1.0 Find more info here
*/
public function get(?BrowserSharedCookieItemRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toGetRequestInformation($requestConfiguration);
Expand All @@ -59,11 +61,12 @@ public function get(?BrowserSharedCookieItemRequestBuilderGetRequestConfiguratio
}

/**
* Update the navigation property sharedCookies in admin
* Update the properties of a browserSharedCookie object.
* @param BrowserSharedCookie $body The request body
* @param BrowserSharedCookieItemRequestBuilderPatchRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<BrowserSharedCookie|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/browsersharedcookie-update?view=graph-rest-1.0 Find more info here
*/
public function patch(BrowserSharedCookie $body, ?BrowserSharedCookieItemRequestBuilderPatchRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toPatchRequestInformation($body, $requestConfiguration);
Expand All @@ -74,7 +77,7 @@ public function patch(BrowserSharedCookie $body, ?BrowserSharedCookieItemRequest
}

/**
* Delete navigation property sharedCookies for admin
* Delete a browserSharedCookie from a browserSiteList.
* @param BrowserSharedCookieItemRequestBuilderDeleteRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return RequestInformation
*/
Expand All @@ -92,7 +95,7 @@ public function toDeleteRequestInformation(?BrowserSharedCookieItemRequestBuilde
}

/**
* A collection of shared cookies defined for the site list.
* Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode.
* @param BrowserSharedCookieItemRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return RequestInformation
*/
Expand All @@ -113,7 +116,7 @@ public function toGetRequestInformation(?BrowserSharedCookieItemRequestBuilderGe
}

/**
* Update the navigation property sharedCookies in admin
* Update the properties of a browserSharedCookie object.
* @param BrowserSharedCookie $body The request body
* @param BrowserSharedCookieItemRequestBuilderPatchRequestConfiguration|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;

/**
* A collection of shared cookies defined for the site list.
* Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode.
*/
class BrowserSharedCookieItemRequestBuilderGetQueryParameters
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,11 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
}

/**
* A collection of shared cookies defined for the site list.
* Get a list of the browserSharedCookie objects and their properties.
* @param SharedCookiesRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<BrowserSharedCookieCollectionResponse|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/browsersitelist-list-sharedcookies?view=graph-rest-1.0 Find more info here
*/
public function get(?SharedCookiesRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toGetRequestInformation($requestConfiguration);
Expand All @@ -66,11 +67,12 @@ public function get(?SharedCookiesRequestBuilderGetRequestConfiguration $request
}

/**
* Create new navigation property to sharedCookies for admin
* Create a new browserSharedCookie object in a browserSiteList.
* @param BrowserSharedCookie $body The request body
* @param SharedCookiesRequestBuilderPostRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<BrowserSharedCookie|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/browsersitelist-post-sharedcookies?view=graph-rest-1.0 Find more info here
*/
public function post(BrowserSharedCookie $body, ?SharedCookiesRequestBuilderPostRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toPostRequestInformation($body, $requestConfiguration);
Expand All @@ -81,7 +83,7 @@ public function post(BrowserSharedCookie $body, ?SharedCookiesRequestBuilderPost
}

/**
* A collection of shared cookies defined for the site list.
* Get a list of the browserSharedCookie objects and their properties.
* @param SharedCookiesRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return RequestInformation
*/
Expand All @@ -102,7 +104,7 @@ public function toGetRequestInformation(?SharedCookiesRequestBuilderGetRequestCo
}

/**
* Create new navigation property to sharedCookies for admin
* Create a new browserSharedCookie object in a browserSiteList.
* @param BrowserSharedCookie $body The request body
* @param SharedCookiesRequestBuilderPostRequestConfiguration|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;

/**
* A collection of shared cookies defined for the site list.
* Get a list of the browserSharedCookie objects and their properties.
*/
class SharedCookiesRequestBuilderGetQueryParameters
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,11 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
}

/**
* Delete navigation property sites for admin
* Delete a browserSite from a browserSiteList.
* @param BrowserSiteItemRequestBuilderDeleteRequestConfiguration|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/browsersitelist-delete-sites?view=graph-rest-1.0 Find more info here
*/
public function delete(?BrowserSiteItemRequestBuilderDeleteRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toDeleteRequestInformation($requestConfiguration);
Expand All @@ -45,10 +46,11 @@ public function delete(?BrowserSiteItemRequestBuilderDeleteRequestConfiguration
}

/**
* A collection of sites defined for the site list.
* Get a browserSite that resides on a browserSiteList.
* @param BrowserSiteItemRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<BrowserSite|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/browsersite-get?view=graph-rest-1.0 Find more info here
*/
public function get(?BrowserSiteItemRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toGetRequestInformation($requestConfiguration);
Expand All @@ -59,11 +61,12 @@ public function get(?BrowserSiteItemRequestBuilderGetRequestConfiguration $reque
}

/**
* Update the navigation property sites in admin
* Update the properties of a browserSite object.
* @param BrowserSite $body The request body
* @param BrowserSiteItemRequestBuilderPatchRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<BrowserSite|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/browsersite-update?view=graph-rest-1.0 Find more info here
*/
public function patch(BrowserSite $body, ?BrowserSiteItemRequestBuilderPatchRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toPatchRequestInformation($body, $requestConfiguration);
Expand All @@ -74,7 +77,7 @@ public function patch(BrowserSite $body, ?BrowserSiteItemRequestBuilderPatchRequ
}

/**
* Delete navigation property sites for admin
* Delete a browserSite from a browserSiteList.
* @param BrowserSiteItemRequestBuilderDeleteRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return RequestInformation
*/
Expand All @@ -92,7 +95,7 @@ public function toDeleteRequestInformation(?BrowserSiteItemRequestBuilderDeleteR
}

/**
* A collection of sites defined for the site list.
* Get a browserSite that resides on a browserSiteList.
* @param BrowserSiteItemRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return RequestInformation
*/
Expand All @@ -113,7 +116,7 @@ public function toGetRequestInformation(?BrowserSiteItemRequestBuilderGetRequest
}

/**
* Update the navigation property sites in admin
* Update the properties of a browserSite object.
* @param BrowserSite $body The request body
* @param BrowserSiteItemRequestBuilderPatchRequestConfiguration|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;

/**
* A collection of sites defined for the site list.
* Get a browserSite that resides on a browserSiteList.
*/
class BrowserSiteItemRequestBuilderGetQueryParameters
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,11 @@ public function __construct($pathParametersOrRawUrl, RequestAdapter $requestAdap
}

/**
* A collection of sites defined for the site list.
* Get a list of the browserSite objects and their properties.
* @param SitesRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<BrowserSiteCollectionResponse|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/browsersitelist-list-sites?view=graph-rest-1.0 Find more info here
*/
public function get(?SitesRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toGetRequestInformation($requestConfiguration);
Expand All @@ -66,11 +67,12 @@ public function get(?SitesRequestBuilderGetRequestConfiguration $requestConfigur
}

/**
* Create new navigation property to sites for admin
* Create a new browserSite object in a browserSiteList.
* @param BrowserSite $body The request body
* @param SitesRequestBuilderPostRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return Promise<BrowserSite|null>
* @throws Exception
* @link https://learn.microsoft.com/graph/api/browsersitelist-post-sites?view=graph-rest-1.0 Find more info here
*/
public function post(BrowserSite $body, ?SitesRequestBuilderPostRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toPostRequestInformation($body, $requestConfiguration);
Expand All @@ -81,7 +83,7 @@ public function post(BrowserSite $body, ?SitesRequestBuilderPostRequestConfigura
}

/**
* A collection of sites defined for the site list.
* Get a list of the browserSite objects and their properties.
* @param SitesRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return RequestInformation
*/
Expand All @@ -102,7 +104,7 @@ public function toGetRequestInformation(?SitesRequestBuilderGetRequestConfigurat
}

/**
* Create new navigation property to sites for admin
* Create a new browserSite object in a browserSiteList.
* @param BrowserSite $body The request body
* @param SitesRequestBuilderPostRequestConfiguration|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;

/**
* A collection of sites defined for the site list.
* Get a list of the browserSite objects and their properties.
*/
class SitesRequestBuilderGetQueryParameters
{
Expand Down
Loading