Skip to content

Commit ec5fec2

Browse files
authored
Merge pull request #911 from microsoftgraph/v1.0/pipelinebuild/165500
Generated models and request builders
2 parents 5e24963 + 1088a1b commit ec5fec2

File tree

9,036 files changed

+15014
-15284
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

9,036 files changed

+15014
-15284
lines changed

msgraph/generated/admin/admin_request_builder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[AdminReq
4646
)
4747
from ..models.o_data_errors.o_data_error import ODataError
4848

49-
error_mapping: Dict[str, ParsableFactory] = {
49+
error_mapping: Dict[str, type[ParsableFactory]] = {
5050
"XXX": ODataError,
5151
}
5252
if not self.request_adapter:
@@ -69,7 +69,7 @@ async def patch(self,body: Admin, request_configuration: Optional[RequestConfigu
6969
)
7070
from ..models.o_data_errors.o_data_error import ODataError
7171

72-
error_mapping: Dict[str, ParsableFactory] = {
72+
error_mapping: Dict[str, type[ParsableFactory]] = {
7373
"XXX": ODataError,
7474
}
7575
if not self.request_adapter:

msgraph/generated/admin/edge/edge_request_builder.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query
4141
)
4242
from ...models.o_data_errors.o_data_error import ODataError
4343

44-
error_mapping: Dict[str, ParsableFactory] = {
44+
error_mapping: Dict[str, type[ParsableFactory]] = {
4545
"XXX": ODataError,
4646
}
4747
if not self.request_adapter:
@@ -59,7 +59,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[EdgeRequ
5959
)
6060
from ...models.o_data_errors.o_data_error import ODataError
6161

62-
error_mapping: Dict[str, ParsableFactory] = {
62+
error_mapping: Dict[str, type[ParsableFactory]] = {
6363
"XXX": ODataError,
6464
}
6565
if not self.request_adapter:
@@ -82,7 +82,7 @@ async def patch(self,body: Edge, request_configuration: Optional[RequestConfigur
8282
)
8383
from ...models.o_data_errors.o_data_error import ODataError
8484

85-
error_mapping: Dict[str, ParsableFactory] = {
85+
error_mapping: Dict[str, type[ParsableFactory]] = {
8686
"XXX": ODataError,
8787
}
8888
if not self.request_adapter:

msgraph/generated/admin/edge/internet_explorer_mode/internet_explorer_mode_request_builder.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query
4141
)
4242
from ....models.o_data_errors.o_data_error import ODataError
4343

44-
error_mapping: Dict[str, ParsableFactory] = {
44+
error_mapping: Dict[str, type[ParsableFactory]] = {
4545
"XXX": ODataError,
4646
}
4747
if not self.request_adapter:
@@ -59,7 +59,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Internet
5959
)
6060
from ....models.o_data_errors.o_data_error import ODataError
6161

62-
error_mapping: Dict[str, ParsableFactory] = {
62+
error_mapping: Dict[str, type[ParsableFactory]] = {
6363
"XXX": ODataError,
6464
}
6565
if not self.request_adapter:
@@ -82,7 +82,7 @@ async def patch(self,body: InternetExplorerMode, request_configuration: Optional
8282
)
8383
from ....models.o_data_errors.o_data_error import ODataError
8484

85-
error_mapping: Dict[str, ParsableFactory] = {
85+
error_mapping: Dict[str, type[ParsableFactory]] = {
8686
"XXX": ODataError,
8787
}
8888
if not self.request_adapter:

msgraph/generated/admin/edge/internet_explorer_mode/site_lists/count/count_request_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq
3939
)
4040
from ......models.o_data_errors.o_data_error import ODataError
4141

42-
error_mapping: Dict[str, ParsableFactory] = {
42+
error_mapping: Dict[str, type[ParsableFactory]] = {
4343
"XXX": ODataError,
4444
}
4545
if not self.request_adapter:

msgraph/generated/admin/edge/internet_explorer_mode/site_lists/item/browser_site_list_item_request_builder.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query
4444
)
4545
from ......models.o_data_errors.o_data_error import ODataError
4646

47-
error_mapping: Dict[str, ParsableFactory] = {
47+
error_mapping: Dict[str, type[ParsableFactory]] = {
4848
"XXX": ODataError,
4949
}
5050
if not self.request_adapter:
@@ -63,7 +63,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[BrowserS
6363
)
6464
from ......models.o_data_errors.o_data_error import ODataError
6565

66-
error_mapping: Dict[str, ParsableFactory] = {
66+
error_mapping: Dict[str, type[ParsableFactory]] = {
6767
"XXX": ODataError,
6868
}
6969
if not self.request_adapter:
@@ -87,7 +87,7 @@ async def patch(self,body: BrowserSiteList, request_configuration: Optional[Requ
8787
)
8888
from ......models.o_data_errors.o_data_error import ODataError
8989

90-
error_mapping: Dict[str, ParsableFactory] = {
90+
error_mapping: Dict[str, type[ParsableFactory]] = {
9191
"XXX": ODataError,
9292
}
9393
if not self.request_adapter:

msgraph/generated/admin/edge/internet_explorer_mode/site_lists/item/publish/publish_request_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ async def post(self,body: PublishPostRequestBody, request_configuration: Optiona
4444
)
4545
from .......models.o_data_errors.o_data_error import ODataError
4646

47-
error_mapping: Dict[str, ParsableFactory] = {
47+
error_mapping: Dict[str, type[ParsableFactory]] = {
4848
"XXX": ODataError,
4949
}
5050
if not self.request_adapter:

msgraph/generated/admin/edge/internet_explorer_mode/site_lists/item/shared_cookies/count/count_request_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq
3939
)
4040
from ........models.o_data_errors.o_data_error import ODataError
4141

42-
error_mapping: Dict[str, ParsableFactory] = {
42+
error_mapping: Dict[str, type[ParsableFactory]] = {
4343
"XXX": ODataError,
4444
}
4545
if not self.request_adapter:

msgraph/generated/admin/edge/internet_explorer_mode/site_lists/item/shared_cookies/item/browser_shared_cookie_item_request_builder.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query
4141
)
4242
from ........models.o_data_errors.o_data_error import ODataError
4343

44-
error_mapping: Dict[str, ParsableFactory] = {
44+
error_mapping: Dict[str, type[ParsableFactory]] = {
4545
"XXX": ODataError,
4646
}
4747
if not self.request_adapter:
@@ -60,7 +60,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[BrowserS
6060
)
6161
from ........models.o_data_errors.o_data_error import ODataError
6262

63-
error_mapping: Dict[str, ParsableFactory] = {
63+
error_mapping: Dict[str, type[ParsableFactory]] = {
6464
"XXX": ODataError,
6565
}
6666
if not self.request_adapter:
@@ -84,7 +84,7 @@ async def patch(self,body: BrowserSharedCookie, request_configuration: Optional[
8484
)
8585
from ........models.o_data_errors.o_data_error import ODataError
8686

87-
error_mapping: Dict[str, ParsableFactory] = {
87+
error_mapping: Dict[str, type[ParsableFactory]] = {
8888
"XXX": ODataError,
8989
}
9090
if not self.request_adapter:

msgraph/generated/admin/edge/internet_explorer_mode/site_lists/item/shared_cookies/shared_cookies_request_builder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[SharedCo
5858
)
5959
from .......models.o_data_errors.o_data_error import ODataError
6060

61-
error_mapping: Dict[str, ParsableFactory] = {
61+
error_mapping: Dict[str, type[ParsableFactory]] = {
6262
"XXX": ODataError,
6363
}
6464
if not self.request_adapter:
@@ -82,7 +82,7 @@ async def post(self,body: BrowserSharedCookie, request_configuration: Optional[R
8282
)
8383
from .......models.o_data_errors.o_data_error import ODataError
8484

85-
error_mapping: Dict[str, ParsableFactory] = {
85+
error_mapping: Dict[str, type[ParsableFactory]] = {
8686
"XXX": ODataError,
8787
}
8888
if not self.request_adapter:

msgraph/generated/admin/edge/internet_explorer_mode/site_lists/item/sites/count/count_request_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CountReq
3939
)
4040
from ........models.o_data_errors.o_data_error import ODataError
4141

42-
error_mapping: Dict[str, ParsableFactory] = {
42+
error_mapping: Dict[str, type[ParsableFactory]] = {
4343
"XXX": ODataError,
4444
}
4545
if not self.request_adapter:

0 commit comments

Comments
 (0)