Skip to content
Closed
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions msgraph_beta/generated/admin/people/people_request_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
from .item_insights.item_insights_request_builder import ItemInsightsRequestBuilder
from .name_pronunciation.name_pronunciation_request_builder import NamePronunciationRequestBuilder
from .profile_card_properties.profile_card_properties_request_builder import ProfileCardPropertiesRequestBuilder
from .profile_property_settings.profile_property_settings_request_builder import ProfilePropertySettingsRequestBuilder
from .pronouns.pronouns_request_builder import PronounsRequestBuilder

class PeopleRequestBuilder(BaseRequestBuilder):
Expand Down Expand Up @@ -169,6 +170,15 @@ def profile_card_properties(self) -> ProfileCardPropertiesRequestBuilder:

return ProfileCardPropertiesRequestBuilder(self.request_adapter, self.path_parameters)

@property
def profile_property_settings(self) -> ProfilePropertySettingsRequestBuilder:
"""
Provides operations to manage the profilePropertySettings property of the microsoft.graph.peopleAdminSettings entity.
"""
from .profile_property_settings.profile_property_settings_request_builder import ProfilePropertySettingsRequestBuilder

return ProfilePropertySettingsRequestBuilder(self.request_adapter, self.path_parameters)

@property
def pronouns(self) -> PronounsRequestBuilder:
"""
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
from __future__ import annotations
from collections.abc import Callable
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, 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}/admin/people/profilePropertySettings/$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, type[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)


Original file line number Diff line number Diff line change
@@ -0,0 +1,190 @@
from __future__ import annotations
from collections.abc import Callable
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, Optional, TYPE_CHECKING, Union
from warnings import warn

if TYPE_CHECKING:
from .....models.o_data_errors.o_data_error import ODataError
from .....models.profile_property_setting import ProfilePropertySetting

class ProfilePropertySettingItemRequestBuilder(BaseRequestBuilder):
"""
Provides operations to manage the profilePropertySettings property of the microsoft.graph.peopleAdminSettings entity.
"""
def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None:
"""
Instantiates a new ProfilePropertySettingItemRequestBuilder 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}/admin/people/profilePropertySettings/{profilePropertySetting%2Did}{?%24expand,%24select}", path_parameters)

async def delete(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> None:
"""
Delete a profilePropertySetting object.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: None
Find more info here: https://learn.microsoft.com/graph/api/profilepropertysetting-delete?view=graph-rest-beta
"""
request_info = self.to_delete_request_information(
request_configuration
)
from .....models.o_data_errors.o_data_error import ODataError

error_mapping: dict[str, type[ParsableFactory]] = {
"XXX": ODataError,
}
if not self.request_adapter:
raise Exception("Http core is null")
return await self.request_adapter.send_no_response_content_async(request_info, error_mapping)

async def get(self,request_configuration: Optional[RequestConfiguration[ProfilePropertySettingItemRequestBuilderGetQueryParameters]] = None) -> Optional[ProfilePropertySetting]:
"""
Read the properties and relationships of a profilePropertySetting object.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[ProfilePropertySetting]
Find more info here: https://learn.microsoft.com/graph/api/profilepropertysetting-get?view=graph-rest-beta
"""
request_info = self.to_get_request_information(
request_configuration
)
from .....models.o_data_errors.o_data_error import ODataError

error_mapping: dict[str, type[ParsableFactory]] = {
"XXX": ODataError,
}
if not self.request_adapter:
raise Exception("Http core is null")
from .....models.profile_property_setting import ProfilePropertySetting

return await self.request_adapter.send_async(request_info, ProfilePropertySetting, error_mapping)

async def patch(self,body: ProfilePropertySetting, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[ProfilePropertySetting]:
"""
Update the properties of a profilePropertySetting object.
param body: The request body
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[ProfilePropertySetting]
Find more info here: https://learn.microsoft.com/graph/api/profilepropertysetting-update?view=graph-rest-beta
"""
if body is None:
raise TypeError("body cannot be null.")
request_info = self.to_patch_request_information(
body, request_configuration
)
from .....models.o_data_errors.o_data_error import ODataError

error_mapping: dict[str, type[ParsableFactory]] = {
"XXX": ODataError,
}
if not self.request_adapter:
raise Exception("Http core is null")
from .....models.profile_property_setting import ProfilePropertySetting

return await self.request_adapter.send_async(request_info, ProfilePropertySetting, error_mapping)

def to_delete_request_information(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
"""
Delete a profilePropertySetting object.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: RequestInformation
"""
request_info = RequestInformation(Method.DELETE, self.url_template, self.path_parameters)
request_info.configure(request_configuration)
return request_info

def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[ProfilePropertySettingItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
"""
Read the properties and relationships of a profilePropertySetting object.
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", "application/json")
return request_info

def to_patch_request_information(self,body: ProfilePropertySetting, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
"""
Update the properties of a profilePropertySetting object.
param body: The request body
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: RequestInformation
"""
if body is None:
raise TypeError("body cannot be null.")
request_info = RequestInformation(Method.PATCH, self.url_template, self.path_parameters)
request_info.configure(request_configuration)
request_info.headers.try_add("Accept", "application/json")
request_info.set_content_from_parsable(self.request_adapter, "application/json", body)
return request_info

def with_url(self,raw_url: str) -> ProfilePropertySettingItemRequestBuilder:
"""
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: ProfilePropertySettingItemRequestBuilder
"""
if raw_url is None:
raise TypeError("raw_url cannot be null.")
return ProfilePropertySettingItemRequestBuilder(self.request_adapter, raw_url)

@dataclass
class ProfilePropertySettingItemRequestBuilderDeleteRequestConfiguration(RequestConfiguration[QueryParameters]):
"""
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)

@dataclass
class ProfilePropertySettingItemRequestBuilderGetQueryParameters():
"""
Read the properties and relationships of a profilePropertySetting object.
"""
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 == "expand":
return "%24expand"
if original_name == "select":
return "%24select"
return original_name

# Expand related entities
expand: Optional[list[str]] = None

# Select properties to be returned
select: Optional[list[str]] = None


@dataclass
class ProfilePropertySettingItemRequestBuilderGetRequestConfiguration(RequestConfiguration[ProfilePropertySettingItemRequestBuilderGetQueryParameters]):
"""
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)

@dataclass
class ProfilePropertySettingItemRequestBuilderPatchRequestConfiguration(RequestConfiguration[QueryParameters]):
"""
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)


Loading