-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathpeople_request_builder.py
More file actions
161 lines (137 loc) · 7.88 KB
/
people_request_builder.py
File metadata and controls
161 lines (137 loc) · 7.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
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.people_admin_settings import PeopleAdminSettings
from .item_insights.item_insights_request_builder import ItemInsightsRequestBuilder
from .profile_card_properties.profile_card_properties_request_builder import ProfileCardPropertiesRequestBuilder
from .profile_sources.profile_sources_request_builder import ProfileSourcesRequestBuilder
from .profile_sources_with_source_id.profile_sources_with_source_id_request_builder import ProfileSourcesWithSourceIdRequestBuilder
from .pronouns.pronouns_request_builder import PronounsRequestBuilder
class PeopleRequestBuilder(BaseRequestBuilder):
"""
Provides operations to manage the people property of the microsoft.graph.admin entity.
"""
def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None:
"""
Instantiates a new PeopleRequestBuilder 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{?%24expand,%24select}", path_parameters)
async def get(self,request_configuration: Optional[RequestConfiguration[PeopleRequestBuilderGetQueryParameters]] = None) -> Optional[PeopleAdminSettings]:
"""
Retrieve the properties and relationships of a peopleAdminSettings object.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[PeopleAdminSettings]
Find more info here: https://learn.microsoft.com/graph/api/peopleadminsettings-get?view=graph-rest-1.0
"""
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.people_admin_settings import PeopleAdminSettings
return await self.request_adapter.send_async(request_info, PeopleAdminSettings, error_mapping)
def profile_sources_with_source_id(self,source_id: str) -> ProfileSourcesWithSourceIdRequestBuilder:
"""
Provides operations to manage the profileSources property of the microsoft.graph.peopleAdminSettings entity.
param source_id: Alternate key of profileSource
Returns: ProfileSourcesWithSourceIdRequestBuilder
"""
if source_id is None:
raise TypeError("source_id cannot be null.")
from .profile_sources_with_source_id.profile_sources_with_source_id_request_builder import ProfileSourcesWithSourceIdRequestBuilder
return ProfileSourcesWithSourceIdRequestBuilder(self.request_adapter, self.path_parameters, source_id)
def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[PeopleRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
"""
Retrieve the properties and relationships of a peopleAdminSettings 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 with_url(self,raw_url: str) -> PeopleRequestBuilder:
"""
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: PeopleRequestBuilder
"""
if raw_url is None:
raise TypeError("raw_url cannot be null.")
return PeopleRequestBuilder(self.request_adapter, raw_url)
@property
def item_insights(self) -> ItemInsightsRequestBuilder:
"""
Provides operations to manage the itemInsights property of the microsoft.graph.peopleAdminSettings entity.
"""
from .item_insights.item_insights_request_builder import ItemInsightsRequestBuilder
return ItemInsightsRequestBuilder(self.request_adapter, self.path_parameters)
@property
def profile_card_properties(self) -> ProfileCardPropertiesRequestBuilder:
"""
Provides operations to manage the profileCardProperties property of the microsoft.graph.peopleAdminSettings entity.
"""
from .profile_card_properties.profile_card_properties_request_builder import ProfileCardPropertiesRequestBuilder
return ProfileCardPropertiesRequestBuilder(self.request_adapter, self.path_parameters)
@property
def profile_sources(self) -> ProfileSourcesRequestBuilder:
"""
Provides operations to manage the profileSources property of the microsoft.graph.peopleAdminSettings entity.
"""
from .profile_sources.profile_sources_request_builder import ProfileSourcesRequestBuilder
return ProfileSourcesRequestBuilder(self.request_adapter, self.path_parameters)
@property
def pronouns(self) -> PronounsRequestBuilder:
"""
Provides operations to manage the pronouns property of the microsoft.graph.peopleAdminSettings entity.
"""
from .pronouns.pronouns_request_builder import PronounsRequestBuilder
return PronounsRequestBuilder(self.request_adapter, self.path_parameters)
@dataclass
class PeopleRequestBuilderGetQueryParameters():
"""
Retrieve the properties and relationships of a peopleAdminSettings 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 PeopleRequestBuilderGetRequestConfiguration(RequestConfiguration[PeopleRequestBuilderGetQueryParameters]):
"""
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)