Skip to content

Commit 711d811

Browse files
authored
Merge branch 'main' into v1.0/pipelinebuild/112480
2 parents ae7e7e1 + fbcae08 commit 711d811

File tree

32 files changed

+81
-81
lines changed

32 files changed

+81
-81
lines changed

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ setuptools = "==67.6.1"
1717
build = "==0.10.0"
1818
bumpver = "==2022.1120"
1919
pylint = "==2.17.2"
20-
mypy = "==1.1.1"
20+
mypy = "==1.2.0"
2121
yapf = "==0.32.0"
2222
isort = "==5.12.0"

Pipfile.lock

Lines changed: 31 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

msgraph/generated/chats/item/messages/messages_request_builder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ async def get(self,request_configuration: Optional[MessagesRequestBuilderGetRequ
6161

6262
async def post(self,body: Optional[chat_message.ChatMessage] = None, request_configuration: Optional[MessagesRequestBuilderPostRequestConfiguration] = None) -> Optional[chat_message.ChatMessage]:
6363
"""
64-
Send a new chatMessage in the specified channel or a chat.
64+
Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
6565
Args:
6666
body: The request body
6767
requestConfiguration: Configuration for the request such as headers, query parameters, and middleware options.
@@ -104,7 +104,7 @@ def to_get_request_information(self,request_configuration: Optional[MessagesRequ
104104

105105
def to_post_request_information(self,body: Optional[chat_message.ChatMessage] = None, request_configuration: Optional[MessagesRequestBuilderPostRequestConfiguration] = None) -> RequestInformation:
106106
"""
107-
Send a new chatMessage in the specified channel or a chat.
107+
Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
108108
Args:
109109
body: The request body
110110
requestConfiguration: Configuration for the request such as headers, query parameters, and middleware options.

msgraph/generated/groups/item/group_item_request_builder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ def owners_by_id(self,id: str) -> directory_object_item_request_builder.Director
356356

357357
async def patch(self,body: Optional[group.Group] = None, request_configuration: Optional[GroupItemRequestBuilderPatchRequestConfiguration] = None) -> Optional[group.Group]:
358358
"""
359-
Add a member to a security or Microsoft 365 group through the **members** navigation property. The following table shows the types of members that can be added to either security groups or Microsoft 365 groups.
359+
Update the properties of a group object.
360360
Args:
361361
body: The request body
362362
requestConfiguration: Configuration for the request such as headers, query parameters, and middleware options.
@@ -512,7 +512,7 @@ def to_get_request_information(self,request_configuration: Optional[GroupItemReq
512512

513513
def to_patch_request_information(self,body: Optional[group.Group] = None, request_configuration: Optional[GroupItemRequestBuilderPatchRequestConfiguration] = None) -> RequestInformation:
514514
"""
515-
Add a member to a security or Microsoft 365 group through the **members** navigation property. The following table shows the types of members that can be added to either security groups or Microsoft 365 groups.
515+
Update the properties of a group object.
516516
Args:
517517
body: The request body
518518
requestConfiguration: Configuration for the request such as headers, query parameters, and middleware options.

msgraph/generated/groups/item/team/channels/item/members/members_request_builder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ async def get(self,request_configuration: Optional[MembersRequestBuilderGetReque
6161

6262
async def post(self,body: Optional[conversation_member.ConversationMember] = None, request_configuration: Optional[MembersRequestBuilderPostRequestConfiguration] = None) -> Optional[conversation_member.ConversationMember]:
6363
"""
64-
Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`.
64+
Add a conversationMember to a channel.
6565
Args:
6666
body: The request body
6767
requestConfiguration: Configuration for the request such as headers, query parameters, and middleware options.
@@ -104,7 +104,7 @@ def to_get_request_information(self,request_configuration: Optional[MembersReque
104104

105105
def to_post_request_information(self,body: Optional[conversation_member.ConversationMember] = None, request_configuration: Optional[MembersRequestBuilderPostRequestConfiguration] = None) -> RequestInformation:
106106
"""
107-
Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`.
107+
Add a conversationMember to a channel.
108108
Args:
109109
body: The request body
110110
requestConfiguration: Configuration for the request such as headers, query parameters, and middleware options.

msgraph/generated/groups/item/team/primary_channel/members/members_request_builder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ async def get(self,request_configuration: Optional[MembersRequestBuilderGetReque
6161

6262
async def post(self,body: Optional[conversation_member.ConversationMember] = None, request_configuration: Optional[MembersRequestBuilderPostRequestConfiguration] = None) -> Optional[conversation_member.ConversationMember]:
6363
"""
64-
Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`.
64+
Add a conversationMember to a channel.
6565
Args:
6666
body: The request body
6767
requestConfiguration: Configuration for the request such as headers, query parameters, and middleware options.
@@ -104,7 +104,7 @@ def to_get_request_information(self,request_configuration: Optional[MembersReque
104104

105105
def to_post_request_information(self,body: Optional[conversation_member.ConversationMember] = None, request_configuration: Optional[MembersRequestBuilderPostRequestConfiguration] = None) -> RequestInformation:
106106
"""
107-
Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`.
107+
Add a conversationMember to a channel.
108108
Args:
109109
body: The request body
110110
requestConfiguration: Configuration for the request such as headers, query parameters, and middleware options.

msgraph/generated/identity_protection/risky_users/item/history/history_request_builder.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def __init__(self,request_adapter: RequestAdapter, path_parameters: Optional[Uni
3838

3939
async def get(self,request_configuration: Optional[HistoryRequestBuilderGetRequestConfiguration] = None) -> Optional[risky_user_history_item_collection_response.RiskyUserHistoryItemCollectionResponse]:
4040
"""
41-
Get the riskyUserHistoryItems from the history navigation property.
41+
Read the properties and relationships of a riskyUserHistoryItem object.
4242
Args:
4343
requestConfiguration: Configuration for the request such as headers, query parameters, and middleware options.
4444
Returns: Optional[risky_user_history_item_collection_response.RiskyUserHistoryItemCollectionResponse]
@@ -85,7 +85,7 @@ async def post(self,body: Optional[risky_user_history_item.RiskyUserHistoryItem]
8585

8686
def to_get_request_information(self,request_configuration: Optional[HistoryRequestBuilderGetRequestConfiguration] = None) -> RequestInformation:
8787
"""
88-
Get the riskyUserHistoryItems from the history navigation property.
88+
Read the properties and relationships of a riskyUserHistoryItem object.
8989
Args:
9090
requestConfiguration: Configuration for the request such as headers, query parameters, and middleware options.
9191
Returns: RequestInformation
@@ -134,7 +134,7 @@ def count(self) -> count_request_builder.CountRequestBuilder:
134134
@dataclass
135135
class HistoryRequestBuilderGetQueryParameters():
136136
"""
137-
Get the riskyUserHistoryItems from the history navigation property.
137+
Read the properties and relationships of a riskyUserHistoryItem object.
138138
"""
139139
def get_query_parameter(self,original_name: Optional[str] = None) -> str:
140140
"""

msgraph/generated/me/chats/item/messages/messages_request_builder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ async def get(self,request_configuration: Optional[MessagesRequestBuilderGetRequ
6161

6262
async def post(self,body: Optional[chat_message.ChatMessage] = None, request_configuration: Optional[MessagesRequestBuilderPostRequestConfiguration] = None) -> Optional[chat_message.ChatMessage]:
6363
"""
64-
Send a new chatMessage in the specified channel or a chat.
64+
Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
6565
Args:
6666
body: The request body
6767
requestConfiguration: Configuration for the request such as headers, query parameters, and middleware options.
@@ -104,7 +104,7 @@ def to_get_request_information(self,request_configuration: Optional[MessagesRequ
104104

105105
def to_post_request_information(self,body: Optional[chat_message.ChatMessage] = None, request_configuration: Optional[MessagesRequestBuilderPostRequestConfiguration] = None) -> RequestInformation:
106106
"""
107-
Send a new chatMessage in the specified channel or a chat.
107+
Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
108108
Args:
109109
body: The request body
110110
requestConfiguration: Configuration for the request such as headers, query parameters, and middleware options.

msgraph/generated/me/joined_teams/item/channels/item/members/members_request_builder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ async def get(self,request_configuration: Optional[MembersRequestBuilderGetReque
6161

6262
async def post(self,body: Optional[conversation_member.ConversationMember] = None, request_configuration: Optional[MembersRequestBuilderPostRequestConfiguration] = None) -> Optional[conversation_member.ConversationMember]:
6363
"""
64-
Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`.
64+
Add a conversationMember to a channel.
6565
Args:
6666
body: The request body
6767
requestConfiguration: Configuration for the request such as headers, query parameters, and middleware options.
@@ -104,7 +104,7 @@ def to_get_request_information(self,request_configuration: Optional[MembersReque
104104

105105
def to_post_request_information(self,body: Optional[conversation_member.ConversationMember] = None, request_configuration: Optional[MembersRequestBuilderPostRequestConfiguration] = None) -> RequestInformation:
106106
"""
107-
Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`.
107+
Add a conversationMember to a channel.
108108
Args:
109109
body: The request body
110110
requestConfiguration: Configuration for the request such as headers, query parameters, and middleware options.

msgraph/generated/me/joined_teams/item/primary_channel/members/members_request_builder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ async def get(self,request_configuration: Optional[MembersRequestBuilderGetReque
6161

6262
async def post(self,body: Optional[conversation_member.ConversationMember] = None, request_configuration: Optional[MembersRequestBuilderPostRequestConfiguration] = None) -> Optional[conversation_member.ConversationMember]:
6363
"""
64-
Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`.
64+
Add a conversationMember to a channel.
6565
Args:
6666
body: The request body
6767
requestConfiguration: Configuration for the request such as headers, query parameters, and middleware options.
@@ -104,7 +104,7 @@ def to_get_request_information(self,request_configuration: Optional[MembersReque
104104

105105
def to_post_request_information(self,body: Optional[conversation_member.ConversationMember] = None, request_configuration: Optional[MembersRequestBuilderPostRequestConfiguration] = None) -> RequestInformation:
106106
"""
107-
Add a conversationMember to a channel. This operation is allowed only for channels with a **membershipType** value of `private` or `shared`.
107+
Add a conversationMember to a channel.
108108
Args:
109109
body: The request body
110110
requestConfiguration: Configuration for the request such as headers, query parameters, and middleware options.

0 commit comments

Comments
 (0)