-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(generation): update request builders and models
Update generated files with build 162820
- Loading branch information
Microsoft Graph DevX Tooling
authored and
Microsoft Graph DevX Tooling
committed
Sep 10, 2024
1 parent
a61a042
commit 1900608
Showing
414 changed files
with
20,378 additions
and
288 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
103 changes: 103 additions & 0 deletions
103
...a/generated/device_app_management/mobile_app_relationships/count/count_request_builder.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
from __future__ import annotations | ||
from dataclasses import dataclass, field | ||
from kiota_abstractions.base_request_builder import BaseRequestBuilder | ||
from kiota_abstractions.base_request_configuration import RequestConfiguration | ||
from kiota_abstractions.default_query_parameters import QueryParameters | ||
from kiota_abstractions.get_path_parameters import get_path_parameters | ||
from kiota_abstractions.method import Method | ||
from kiota_abstractions.request_adapter import RequestAdapter | ||
from kiota_abstractions.request_information import RequestInformation | ||
from kiota_abstractions.request_option import RequestOption | ||
from kiota_abstractions.serialization import Parsable, ParsableFactory | ||
from typing import Any, Callable, Dict, List, Optional, TYPE_CHECKING, Union | ||
from warnings import warn | ||
|
||
if TYPE_CHECKING: | ||
from ....models.o_data_errors.o_data_error import ODataError | ||
|
||
class CountRequestBuilder(BaseRequestBuilder): | ||
""" | ||
Provides operations to count the resources in the collection. | ||
""" | ||
def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, Dict[str, Any]]) -> None: | ||
""" | ||
Instantiates a new CountRequestBuilder and sets the default values. | ||
param path_parameters: The raw url or the url-template parameters for the request. | ||
param request_adapter: The request adapter to use to execute the requests. | ||
Returns: None | ||
""" | ||
super().__init__(request_adapter, "{+baseurl}/deviceAppManagement/mobileAppRelationships/$count{?%24filter,%24search}", path_parameters) | ||
|
||
async def get(self,request_configuration: Optional[RequestConfiguration[CountRequestBuilderGetQueryParameters]] = None) -> Optional[int]: | ||
""" | ||
Get the number of the resource | ||
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. | ||
Returns: Optional[int] | ||
""" | ||
request_info = self.to_get_request_information( | ||
request_configuration | ||
) | ||
from ....models.o_data_errors.o_data_error import ODataError | ||
|
||
error_mapping: Dict[str, ParsableFactory] = { | ||
"XXX": ODataError, | ||
} | ||
if not self.request_adapter: | ||
raise Exception("Http core is null") | ||
return await self.request_adapter.send_primitive_async(request_info, "int", error_mapping) | ||
|
||
def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[CountRequestBuilderGetQueryParameters]] = None) -> RequestInformation: | ||
""" | ||
Get the number of the resource | ||
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options. | ||
Returns: RequestInformation | ||
""" | ||
request_info = RequestInformation(Method.GET, self.url_template, self.path_parameters) | ||
request_info.configure(request_configuration) | ||
request_info.headers.try_add("Accept", "text/plain;q=0.9") | ||
return request_info | ||
|
||
def with_url(self,raw_url: str) -> CountRequestBuilder: | ||
""" | ||
Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored. | ||
param raw_url: The raw URL to use for the request builder. | ||
Returns: CountRequestBuilder | ||
""" | ||
if raw_url is None: | ||
raise TypeError("raw_url cannot be null.") | ||
return CountRequestBuilder(self.request_adapter, raw_url) | ||
|
||
@dataclass | ||
class CountRequestBuilderGetQueryParameters(): | ||
""" | ||
Get the number of the resource | ||
""" | ||
def get_query_parameter(self,original_name: str) -> str: | ||
""" | ||
Maps the query parameters names to their encoded names for the URI template parsing. | ||
param original_name: The original query parameter name in the class. | ||
Returns: str | ||
""" | ||
if original_name is None: | ||
raise TypeError("original_name cannot be null.") | ||
if original_name == "filter": | ||
return "%24filter" | ||
if original_name == "search": | ||
return "%24search" | ||
return original_name | ||
|
||
# Filter items by property values | ||
filter: Optional[str] = None | ||
|
||
# Search items by search phrases | ||
search: Optional[str] = None | ||
|
||
|
||
@dataclass | ||
class CountRequestBuilderGetRequestConfiguration(RequestConfiguration[CountRequestBuilderGetQueryParameters]): | ||
""" | ||
Configuration for the request such as headers, query parameters, and middleware options. | ||
""" | ||
warn("This class is deprecated. Please use the generic RequestConfiguration class generated by the generator.", DeprecationWarning) | ||
|
||
|
Oops, something went wrong.