Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
b718065
chore(deps): bump actions/checkout from 4 to 5
dependabot[bot] Aug 12, 2025
a949d97
chore(deps-dev): bump charset-normalizer from 3.4.2 to 3.4.3
dependabot[bot] Aug 12, 2025
251cc07
chore(deps-dev): bump time-machine from 2.15.0 to 2.19.0
dependabot[bot] Aug 20, 2025
a10230c
chore(deps-dev): bump requests from 2.32.4 to 2.32.5
dependabot[bot] Aug 21, 2025
8cfa20b
chore(deps-dev): bump multidict from 6.6.3 to 6.6.4
dependabot[bot] Aug 21, 2025
9fcf1d0
chore(deps-dev): bump pylint from 3.3.7 to 3.3.8 in the pylint group
dependabot[bot] Aug 21, 2025
6f3bc44
chore(deps-dev): bump wrapt from 1.17.2 to 1.17.3
dependabot[bot] Aug 21, 2025
a131aca
chore(deps-dev): bump azure-identity in the azure-identity group
dependabot[bot] Aug 21, 2025
c1e2e16
chore(deps-dev): bump the kiota group with 7 updates
dependabot[bot] Aug 22, 2025
5551f59
chore(deps-dev): bump h2 from 4.2.0 to 4.3.0
dependabot[bot] Aug 25, 2025
3ff26e4
chore(deps-dev): bump cryptography from 45.0.5 to 45.0.7
dependabot[bot] Sep 3, 2025
9618af9
chore(deps): bump actions/setup-python from 5 to 6
dependabot[bot] Sep 5, 2025
0f1ddde
feat(generation): update request builders and models
Sep 9, 2025
b34d8d4
Merge remote-tracking branch 'remotes/origin/dependabot/github_action…
MIchaelMainer Sep 11, 2025
122eb87
Merge remote-tracking branch 'remotes/origin/dependabot/github_action…
MIchaelMainer Sep 11, 2025
4ec4ad0
Merge remote-tracking branch 'remotes/origin/dependabot/pip/azure-ide…
MIchaelMainer Sep 11, 2025
9a65e41
Merge remote-tracking branch 'remotes/origin/dependabot/pip/charset-n…
MIchaelMainer Sep 11, 2025
7c026cc
Merge remote-tracking branch 'remotes/origin/dependabot/pip/cryptogra…
MIchaelMainer Sep 11, 2025
ae97171
Merge remote-tracking branch 'remotes/origin/dependabot/pip/h2-4.3.0'…
MIchaelMainer Sep 11, 2025
f66408c
Merge remote-tracking branch 'remotes/origin/dependabot/pip/kiota-93f…
MIchaelMainer Sep 11, 2025
f8b4f3d
Merge remote-tracking branch 'remotes/origin/dependabot/pip/multidict…
MIchaelMainer Sep 11, 2025
a18bb41
Merge remote-tracking branch 'remotes/origin/dependabot/pip/pylint-38…
MIchaelMainer Sep 11, 2025
ceb9472
Merge remote-tracking branch 'remotes/origin/dependabot/pip/requests-…
MIchaelMainer Sep 11, 2025
dbb19b5
Merge remote-tracking branch 'remotes/origin/dependabot/pip/time-mach…
MIchaelMainer Sep 11, 2025
524fdf4
Merge remote-tracking branch 'remotes/origin/dependabot/pip/wrapt-1.1…
MIchaelMainer Sep 11, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
needs: [build]
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: 3.13
- name: Install flit
Expand Down
6 changes: 3 additions & 3 deletions msgraph_beta/generated/admin/teams/teams_request_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query

async def get(self,request_configuration: Optional[RequestConfiguration[TeamsRequestBuilderGetQueryParameters]] = None) -> Optional[TeamsAdminRoot]:
"""
Represents a collection of user configurations.
A container for all Teams telephone number management functionalities and user configurations.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[TeamsAdminRoot]
"""
Expand Down Expand Up @@ -106,7 +106,7 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo

def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[TeamsRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
"""
Represents a collection of user configurations.
A container for all Teams telephone number management functionalities and user configurations.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: RequestInformation
"""
Expand Down Expand Up @@ -168,7 +168,7 @@ class TeamsRequestBuilderDeleteRequestConfiguration(RequestConfiguration[QueryPa
@dataclass
class TeamsRequestBuilderGetQueryParameters():
"""
Represents a collection of user configurations.
A container for all Teams telephone number management functionalities and user configurations.
"""
def get_query_parameter(self,original_name: str) -> str:
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query

async def get(self,request_configuration: Optional[RequestConfiguration[ResourceConnectionItemRequestBuilderGetQueryParameters]] = None) -> Optional[ResourceConnection]:
"""
Read the properties and relationships of an operationalInsightsConnection object.
Read the properties and relationships of a resourceConnection object.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[ResourceConnection]
Find more info here: https://learn.microsoft.com/graph/api/windowsupdates-operationalinsightsconnection-get?view=graph-rest-beta
Find more info here: https://learn.microsoft.com/graph/api/windowsupdates-resourceconnection-get?view=graph-rest-beta
"""
request_info = self.to_get_request_information(
request_configuration
Expand Down Expand Up @@ -106,7 +106,7 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo

def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[ResourceConnectionItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
"""
Read the properties and relationships of an operationalInsightsConnection object.
Read the properties and relationships of a resourceConnection object.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: RequestInformation
"""
Expand Down Expand Up @@ -150,7 +150,7 @@ class ResourceConnectionItemRequestBuilderDeleteRequestConfiguration(RequestConf
@dataclass
class ResourceConnectionItemRequestBuilderGetQueryParameters():
"""
Read the properties and relationships of an operationalInsightsConnection object.
Read the properties and relationships of a resourceConnection object.
"""
def get_query_parameter(self,original_name: str) -> str:
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, d

async def delete(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> None:
"""
Delete an updatableAsset object.
Delete an azureADDevice object. When a Microsoft Entra device is deleted, it is unregistered and automatically unenrolled from management for all update categories, as well as removed from every deploymentAudience and updatableAssetGroup.
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/windowsupdates-updatableasset-delete?view=graph-rest-beta
Find more info here: https://learn.microsoft.com/graph/api/windowsupdates-azureaddevice-delete?view=graph-rest-beta
"""
request_info = self.to_delete_request_information(
request_configuration
Expand All @@ -55,10 +55,10 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query

async def get(self,request_configuration: Optional[RequestConfiguration[UpdatableAssetItemRequestBuilderGetQueryParameters]] = None) -> Optional[UpdatableAsset]:
"""
Read the properties and relationships of an updatableAsset object.
Read the properties of an azureADDevice object.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[UpdatableAsset]
Find more info here: https://learn.microsoft.com/graph/api/windowsupdates-updatableasset-get?view=graph-rest-beta
Find more info here: https://learn.microsoft.com/graph/api/windowsupdates-azureaddevice-get?view=graph-rest-beta
"""
request_info = self.to_get_request_information(
request_configuration
Expand Down Expand Up @@ -99,7 +99,7 @@ async def patch(self,body: UpdatableAsset, request_configuration: Optional[Reque

def to_delete_request_information(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
"""
Delete an updatableAsset object.
Delete an azureADDevice object. When a Microsoft Entra device is deleted, it is unregistered and automatically unenrolled from management for all update categories, as well as removed from every deploymentAudience and updatableAssetGroup.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: RequestInformation
"""
Expand All @@ -110,7 +110,7 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo

def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[UpdatableAssetItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
"""
Read the properties and relationships of an updatableAsset object.
Read the properties of an azureADDevice object.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: RequestInformation
"""
Expand Down Expand Up @@ -190,7 +190,7 @@ class UpdatableAssetItemRequestBuilderDeleteRequestConfiguration(RequestConfigur
@dataclass
class UpdatableAssetItemRequestBuilderGetQueryParameters():
"""
Read the properties and relationships of an updatableAsset object.
Read the properties of an azureADDevice object.
"""
def get_query_parameter(self,original_name: str) -> str:
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Messages

async def post(self,body: ChatMessage, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[ChatMessage]:
"""
Send a new chatMessage in the specified channel or a chat.
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/chatmessage-post?view=graph-rest-beta
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.")
Expand Down Expand Up @@ -108,7 +108,7 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi

def to_post_request_information(self,body: ChatMessage, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
"""
Send a new chatMessage in the specified channel or a chat.
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
Expand Down
Loading
Loading