Skip to content

Commit f509ad7

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
feat(generation): update request builders and models
Update generated files with build 206096
1 parent e1ce555 commit f509ad7

File tree

442 files changed

+1708
-886
lines changed

Some content is hidden

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

442 files changed

+1708
-886
lines changed

msgraph_beta/generated/applications/item/federated_identity_credentials/federated_identity_credentials_request_builder.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ def by_federated_identity_credential_id(self,federated_identity_credential_id: s
4949

5050
async def get(self,request_configuration: Optional[RequestConfiguration[FederatedIdentityCredentialsRequestBuilderGetQueryParameters]] = None) -> Optional[FederatedIdentityCredentialCollectionResponse]:
5151
"""
52-
Get a list of the federatedIdentityCredential objects and their properties.
52+
Get a list of the federatedIdentityCredential objects and their properties assigned to an application or an agentIdentityBlueprint.
5353
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
5454
Returns: Optional[FederatedIdentityCredentialCollectionResponse]
55-
Find more info here: https://learn.microsoft.com/graph/api/application-list-federatedidentitycredentials?view=graph-rest-beta
55+
Find more info here: https://learn.microsoft.com/graph/api/federatedidentitycredential-list?view=graph-rest-beta
5656
"""
5757
request_info = self.to_get_request_information(
5858
request_configuration
@@ -70,11 +70,11 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Federate
7070

7171
async def post(self,body: FederatedIdentityCredential, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[FederatedIdentityCredential]:
7272
"""
73-
Create a new federatedIdentityCredential object for an agentIdentityBlueprint. By configuring a trust relationship between your Microsoft Entra agent identity blueprint registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an agentIdentityBlueprint.
73+
Create a new federatedIdentityCredential object for an application or an agentIdentityBlueprint. By configuring a trust relationship between your Microsoft Entra application registration or agent identity blueprint and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application or agent identity blueprint.
7474
param body: The request body
7575
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
7676
Returns: Optional[FederatedIdentityCredential]
77-
Find more info here: https://learn.microsoft.com/graph/api/agentidentityblueprint-post-federatedidentitycredentials?view=graph-rest-beta
77+
Find more info here: https://learn.microsoft.com/graph/api/federatedidentitycredential-post?view=graph-rest-beta
7878
"""
7979
if body is None:
8080
raise TypeError("body cannot be null.")
@@ -94,7 +94,7 @@ async def post(self,body: FederatedIdentityCredential, request_configuration: Op
9494

9595
def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[FederatedIdentityCredentialsRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
9696
"""
97-
Get a list of the federatedIdentityCredential objects and their properties.
97+
Get a list of the federatedIdentityCredential objects and their properties assigned to an application or an agentIdentityBlueprint.
9898
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
9999
Returns: RequestInformation
100100
"""
@@ -105,7 +105,7 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi
105105

106106
def to_post_request_information(self,body: FederatedIdentityCredential, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
107107
"""
108-
Create a new federatedIdentityCredential object for an agentIdentityBlueprint. By configuring a trust relationship between your Microsoft Entra agent identity blueprint registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an agentIdentityBlueprint.
108+
Create a new federatedIdentityCredential object for an application or an agentIdentityBlueprint. By configuring a trust relationship between your Microsoft Entra application registration or agent identity blueprint and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application or agent identity blueprint.
109109
param body: The request body
110110
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
111111
Returns: RequestInformation
@@ -140,7 +140,7 @@ def count(self) -> CountRequestBuilder:
140140
@dataclass
141141
class FederatedIdentityCredentialsRequestBuilderGetQueryParameters():
142142
"""
143-
Get a list of the federatedIdentityCredential objects and their properties.
143+
Get a list of the federatedIdentityCredential objects and their properties assigned to an application or an agentIdentityBlueprint.
144144
"""
145145
def get_query_parameter(self,original_name: str) -> str:
146146
"""

msgraph_beta/generated/applications/item/federated_identity_credentials/item/federated_identity_credential_item_request_builder.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, d
3232

3333
async def delete(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> None:
3434
"""
35-
Deletes a federatedIdentityCredential object from an application.
35+
Delete a federatedIdentityCredential object from an application or an agentIdentityBlueprint.
3636
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
3737
Returns: None
3838
Find more info here: https://learn.microsoft.com/graph/api/federatedidentitycredential-delete?view=graph-rest-beta
@@ -51,7 +51,7 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query
5151

5252
async def get(self,request_configuration: Optional[RequestConfiguration[FederatedIdentityCredentialItemRequestBuilderGetQueryParameters]] = None) -> Optional[FederatedIdentityCredential]:
5353
"""
54-
Read the properties and relationships of a federatedIdentityCredential object.
54+
Read the properties and relationships of a federatedIdentityCredential object assigned to an application or an agentIdentityBlueprint.
5555
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
5656
Returns: Optional[FederatedIdentityCredential]
5757
Find more info here: https://learn.microsoft.com/graph/api/federatedidentitycredential-get?view=graph-rest-beta
@@ -72,7 +72,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Federate
7272

7373
async def patch(self,body: FederatedIdentityCredential, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[FederatedIdentityCredential]:
7474
"""
75-
Create a new federatedIdentityCredential object for an application if it doesn't exist, or update the properties of an existing federatedIdentityCredential object. By configuring a trust relationship between your Microsoft Entra application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application.
75+
Create a new federatedIdentityCredential object for an application or an agentIdentityBlueprint if it doesn't exist, or update the properties of an existing federatedIdentityCredential object. By configuring a trust relationship between your Microsoft Entra application registration or agentIdentityBlueprint and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application or agentIdentityBlueprint.
7676
param body: The request body
7777
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
7878
Returns: Optional[FederatedIdentityCredential]
@@ -96,7 +96,7 @@ async def patch(self,body: FederatedIdentityCredential, request_configuration: O
9696

9797
def to_delete_request_information(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
9898
"""
99-
Deletes a federatedIdentityCredential object from an application.
99+
Delete a federatedIdentityCredential object from an application or an agentIdentityBlueprint.
100100
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
101101
Returns: RequestInformation
102102
"""
@@ -107,7 +107,7 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo
107107

108108
def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[FederatedIdentityCredentialItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
109109
"""
110-
Read the properties and relationships of a federatedIdentityCredential object.
110+
Read the properties and relationships of a federatedIdentityCredential object assigned to an application or an agentIdentityBlueprint.
111111
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
112112
Returns: RequestInformation
113113
"""
@@ -118,7 +118,7 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi
118118

119119
def to_patch_request_information(self,body: FederatedIdentityCredential, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
120120
"""
121-
Create a new federatedIdentityCredential object for an application if it doesn't exist, or update the properties of an existing federatedIdentityCredential object. By configuring a trust relationship between your Microsoft Entra application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application.
121+
Create a new federatedIdentityCredential object for an application or an agentIdentityBlueprint if it doesn't exist, or update the properties of an existing federatedIdentityCredential object. By configuring a trust relationship between your Microsoft Entra application registration or agentIdentityBlueprint and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application or agentIdentityBlueprint.
122122
param body: The request body
123123
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
124124
Returns: RequestInformation
@@ -151,7 +151,7 @@ class FederatedIdentityCredentialItemRequestBuilderDeleteRequestConfiguration(Re
151151
@dataclass
152152
class FederatedIdentityCredentialItemRequestBuilderGetQueryParameters():
153153
"""
154-
Read the properties and relationships of a federatedIdentityCredential object.
154+
Read the properties and relationships of a federatedIdentityCredential object assigned to an application or an agentIdentityBlueprint.
155155
"""
156156
def get_query_parameter(self,original_name: str) -> str:
157157
"""

msgraph_beta/generated/applications/item/federated_identity_credentials_with_name/federated_identity_credentials_with_name_request_builder.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, d
3535

3636
async def delete(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> None:
3737
"""
38-
Deletes a federatedIdentityCredential object from an application.
38+
Delete a federatedIdentityCredential object from an application or an agentIdentityBlueprint.
3939
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
4040
Returns: None
4141
Find more info here: https://learn.microsoft.com/graph/api/federatedidentitycredential-delete?view=graph-rest-beta
@@ -54,7 +54,7 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query
5454

5555
async def get(self,request_configuration: Optional[RequestConfiguration[FederatedIdentityCredentialsWithNameRequestBuilderGetQueryParameters]] = None) -> Optional[FederatedIdentityCredential]:
5656
"""
57-
Read the properties and relationships of a federatedIdentityCredential object.
57+
Read the properties and relationships of a federatedIdentityCredential object assigned to an application or an agentIdentityBlueprint.
5858
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
5959
Returns: Optional[FederatedIdentityCredential]
6060
Find more info here: https://learn.microsoft.com/graph/api/federatedidentitycredential-get?view=graph-rest-beta
@@ -75,7 +75,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Federate
7575

7676
async def patch(self,body: FederatedIdentityCredential, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[FederatedIdentityCredential]:
7777
"""
78-
Create a new federatedIdentityCredential object for an application if it doesn't exist, or update the properties of an existing federatedIdentityCredential object. By configuring a trust relationship between your Microsoft Entra application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application.
78+
Create a new federatedIdentityCredential object for an application or an agentIdentityBlueprint if it doesn't exist, or update the properties of an existing federatedIdentityCredential object. By configuring a trust relationship between your Microsoft Entra application registration or agentIdentityBlueprint and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application or agentIdentityBlueprint.
7979
param body: The request body
8080
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
8181
Returns: Optional[FederatedIdentityCredential]
@@ -99,7 +99,7 @@ async def patch(self,body: FederatedIdentityCredential, request_configuration: O
9999

100100
def to_delete_request_information(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
101101
"""
102-
Deletes a federatedIdentityCredential object from an application.
102+
Delete a federatedIdentityCredential object from an application or an agentIdentityBlueprint.
103103
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
104104
Returns: RequestInformation
105105
"""
@@ -110,7 +110,7 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo
110110

111111
def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[FederatedIdentityCredentialsWithNameRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
112112
"""
113-
Read the properties and relationships of a federatedIdentityCredential object.
113+
Read the properties and relationships of a federatedIdentityCredential object assigned to an application or an agentIdentityBlueprint.
114114
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
115115
Returns: RequestInformation
116116
"""
@@ -121,7 +121,7 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi
121121

122122
def to_patch_request_information(self,body: FederatedIdentityCredential, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
123123
"""
124-
Create a new federatedIdentityCredential object for an application if it doesn't exist, or update the properties of an existing federatedIdentityCredential object. By configuring a trust relationship between your Microsoft Entra application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application.
124+
Create a new federatedIdentityCredential object for an application or an agentIdentityBlueprint if it doesn't exist, or update the properties of an existing federatedIdentityCredential object. By configuring a trust relationship between your Microsoft Entra application registration or agentIdentityBlueprint and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application or agentIdentityBlueprint.
125125
param body: The request body
126126
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
127127
Returns: RequestInformation
@@ -154,7 +154,7 @@ class FederatedIdentityCredentialsWithNameRequestBuilderDeleteRequestConfigurati
154154
@dataclass
155155
class FederatedIdentityCredentialsWithNameRequestBuilderGetQueryParameters():
156156
"""
157-
Read the properties and relationships of a federatedIdentityCredential object.
157+
Read the properties and relationships of a federatedIdentityCredential object assigned to an application or an agentIdentityBlueprint.
158158
"""
159159
def get_query_parameter(self,original_name: str) -> str:
160160
"""

0 commit comments

Comments
 (0)