Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ def by_federated_identity_credential_id(self,federated_identity_credential_id: s

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

async def post(self,body: FederatedIdentityCredential, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[FederatedIdentityCredential]:
"""
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.
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.
param body: The request body
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[FederatedIdentityCredential]
Find more info here: https://learn.microsoft.com/graph/api/agentidentityblueprint-post-federatedidentitycredentials?view=graph-rest-beta
Find more info here: https://learn.microsoft.com/graph/api/federatedidentitycredential-post?view=graph-rest-beta
"""
if body is None:
raise TypeError("body cannot be null.")
Expand All @@ -94,7 +94,7 @@ async def post(self,body: FederatedIdentityCredential, request_configuration: Op

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

def to_post_request_information(self,body: FederatedIdentityCredential, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
"""
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.
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.
param body: The request body
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: RequestInformation
Expand Down Expand Up @@ -140,7 +140,7 @@ def count(self) -> CountRequestBuilder:
@dataclass
class FederatedIdentityCredentialsRequestBuilderGetQueryParameters():
"""
Get a list of the federatedIdentityCredential objects and their properties.
Get a list of the federatedIdentityCredential objects and their properties assigned to an application or an agentIdentityBlueprint.
"""
def get_query_parameter(self,original_name: str) -> str:
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, d

async def delete(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> None:
"""
Deletes a federatedIdentityCredential object from an application.
Delete a federatedIdentityCredential object from an application or an agentIdentityBlueprint.
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/federatedidentitycredential-delete?view=graph-rest-beta
Expand All @@ -51,7 +51,7 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query

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

async def patch(self,body: FederatedIdentityCredential, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[FederatedIdentityCredential]:
"""
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.
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.
param body: The request body
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[FederatedIdentityCredential]
Expand All @@ -96,7 +96,7 @@ async def patch(self,body: FederatedIdentityCredential, request_configuration: O

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

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

def to_patch_request_information(self,body: FederatedIdentityCredential, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
"""
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.
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.
param body: The request body
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: RequestInformation
Expand Down Expand Up @@ -151,7 +151,7 @@ class FederatedIdentityCredentialItemRequestBuilderDeleteRequestConfiguration(Re
@dataclass
class FederatedIdentityCredentialItemRequestBuilderGetQueryParameters():
"""
Read the properties and relationships of a federatedIdentityCredential object.
Read the properties and relationships of a federatedIdentityCredential object assigned to an application or an agentIdentityBlueprint.
"""
def get_query_parameter(self,original_name: str) -> str:
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, d

async def delete(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> None:
"""
Deletes a federatedIdentityCredential object from an application.
Delete a federatedIdentityCredential object from an application or an agentIdentityBlueprint.
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/federatedidentitycredential-delete?view=graph-rest-beta
Expand All @@ -54,7 +54,7 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query

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

async def patch(self,body: FederatedIdentityCredential, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[FederatedIdentityCredential]:
"""
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.
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.
param body: The request body
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[FederatedIdentityCredential]
Expand All @@ -99,7 +99,7 @@ async def patch(self,body: FederatedIdentityCredential, request_configuration: O

def to_delete_request_information(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
"""
Deletes a federatedIdentityCredential object from an application.
Delete a federatedIdentityCredential object from an application or an agentIdentityBlueprint.
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[FederatedIdentityCredentialsWithNameRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
"""
Read the properties and relationships of a federatedIdentityCredential object.
Read the properties and relationships of a federatedIdentityCredential object assigned to an application or an agentIdentityBlueprint.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: RequestInformation
"""
Expand All @@ -121,7 +121,7 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi

def to_patch_request_information(self,body: FederatedIdentityCredential, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
"""
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.
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.
param body: The request body
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: RequestInformation
Expand Down Expand Up @@ -154,7 +154,7 @@ class FederatedIdentityCredentialsWithNameRequestBuilderDeleteRequestConfigurati
@dataclass
class FederatedIdentityCredentialsWithNameRequestBuilderGetQueryParameters():
"""
Read the properties and relationships of a federatedIdentityCredential object.
Read the properties and relationships of a federatedIdentityCredential object assigned to an application or an agentIdentityBlueprint.
"""
def get_query_parameter(self,original_name: str) -> str:
"""
Expand Down
Loading
Loading