-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathmessages_request_builder.py
More file actions
240 lines (205 loc) · 11.7 KB
/
messages_request_builder.py
File metadata and controls
240 lines (205 loc) · 11.7 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
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.chat_message import ChatMessage
from ....models.chat_message_collection_response import ChatMessageCollectionResponse
from ....models.o_data_errors.o_data_error import ODataError
from .count.count_request_builder import CountRequestBuilder
from .delta.delta_request_builder import DeltaRequestBuilder
from .forward_to_chat.forward_to_chat_request_builder import ForwardToChatRequestBuilder
from .item.chat_message_item_request_builder import ChatMessageItemRequestBuilder
from .reply_with_quote.reply_with_quote_request_builder import ReplyWithQuoteRequestBuilder
class MessagesRequestBuilder(BaseRequestBuilder):
"""
Provides operations to manage the messages property of the microsoft.graph.chat entity.
"""
def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None:
"""
Instantiates a new MessagesRequestBuilder 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}/chats/{chat%2Did}/messages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", path_parameters)
def by_chat_message_id(self,chat_message_id: str) -> ChatMessageItemRequestBuilder:
"""
Provides operations to manage the messages property of the microsoft.graph.chat entity.
param chat_message_id: The unique identifier of chatMessage
Returns: ChatMessageItemRequestBuilder
"""
if chat_message_id is None:
raise TypeError("chat_message_id cannot be null.")
from .item.chat_message_item_request_builder import ChatMessageItemRequestBuilder
url_tpl_params = get_path_parameters(self.path_parameters)
url_tpl_params["chatMessage%2Did"] = chat_message_id
return ChatMessageItemRequestBuilder(self.request_adapter, url_tpl_params)
async def get(self,request_configuration: Optional[RequestConfiguration[MessagesRequestBuilderGetQueryParameters]] = None) -> Optional[ChatMessageCollectionResponse]:
"""
Retrieve the list of messages in a chat. This method supports federation. To list chat messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel).
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[ChatMessageCollectionResponse]
Find more info here: https://learn.microsoft.com/graph/api/chat-list-messages?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.chat_message_collection_response import ChatMessageCollectionResponse
return await self.request_adapter.send_async(request_info, ChatMessageCollectionResponse, error_mapping)
async def post(self,body: ChatMessage, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[ChatMessage]:
"""
Send a new chatMessage in the specified chat. This API cannot create a new chat; you must use the list chats method to retrieve the ID of an existing chat before creating a chat message.
param body: The request body
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[ChatMessage]
Find more info here: https://learn.microsoft.com/graph/api/chat-post-messages?view=graph-rest-beta
"""
if body is None:
raise TypeError("body cannot be null.")
request_info = self.to_post_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.chat_message import ChatMessage
return await self.request_adapter.send_async(request_info, ChatMessage, error_mapping)
def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[MessagesRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
"""
Retrieve the list of messages in a chat. This method supports federation. To list chat messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel).
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_post_request_information(self,body: ChatMessage, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
"""
Send a new chatMessage in the specified chat. This API cannot create a new chat; you must use the list chats method to retrieve the ID of an existing chat before creating a chat message.
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.POST, 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) -> MessagesRequestBuilder:
"""
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: MessagesRequestBuilder
"""
if raw_url is None:
raise TypeError("raw_url cannot be null.")
return MessagesRequestBuilder(self.request_adapter, raw_url)
@property
def count(self) -> CountRequestBuilder:
"""
Provides operations to count the resources in the collection.
"""
from .count.count_request_builder import CountRequestBuilder
return CountRequestBuilder(self.request_adapter, self.path_parameters)
@property
def delta(self) -> DeltaRequestBuilder:
"""
Provides operations to call the delta method.
"""
from .delta.delta_request_builder import DeltaRequestBuilder
return DeltaRequestBuilder(self.request_adapter, self.path_parameters)
@property
def forward_to_chat(self) -> ForwardToChatRequestBuilder:
"""
Provides operations to call the forwardToChat method.
"""
from .forward_to_chat.forward_to_chat_request_builder import ForwardToChatRequestBuilder
return ForwardToChatRequestBuilder(self.request_adapter, self.path_parameters)
@property
def reply_with_quote(self) -> ReplyWithQuoteRequestBuilder:
"""
Provides operations to call the replyWithQuote method.
"""
from .reply_with_quote.reply_with_quote_request_builder import ReplyWithQuoteRequestBuilder
return ReplyWithQuoteRequestBuilder(self.request_adapter, self.path_parameters)
@dataclass
class MessagesRequestBuilderGetQueryParameters():
"""
Retrieve the list of messages in a chat. This method supports federation. To list chat messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel).
"""
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 == "count":
return "%24count"
if original_name == "expand":
return "%24expand"
if original_name == "filter":
return "%24filter"
if original_name == "orderby":
return "%24orderby"
if original_name == "search":
return "%24search"
if original_name == "select":
return "%24select"
if original_name == "skip":
return "%24skip"
if original_name == "top":
return "%24top"
return original_name
# Include count of items
count: Optional[bool] = None
# Expand related entities
expand: Optional[list[str]] = None
# Filter items by property values
filter: Optional[str] = None
# Order items by property values
orderby: Optional[list[str]] = None
# Search items by search phrases
search: Optional[str] = None
# Select properties to be returned
select: Optional[list[str]] = None
# Skip the first n items
skip: Optional[int] = None
# Show only the first n items
top: Optional[int] = None
@dataclass
class MessagesRequestBuilderGetRequestConfiguration(RequestConfiguration[MessagesRequestBuilderGetQueryParameters]):
"""
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 MessagesRequestBuilderPostRequestConfiguration(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)