Skip to content
Open
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,10 @@ def by_cloud_pc_external_partner_id(self,cloud_pc_external_partner_id: str) -> C

async def get(self,request_configuration: Optional[RequestConfiguration[ExternalPartnersRequestBuilderGetQueryParameters]] = None) -> Optional[CloudPcExternalPartnerCollectionResponse]:
"""
Get externalPartners from deviceManagement
Get a list of the cloudPcExternalPartner objects and their properties.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[CloudPcExternalPartnerCollectionResponse]
Find more info here: https://learn.microsoft.com/graph/api/virtualendpoint-list-externalpartners?view=graph-rest-beta
"""
request_info = self.to_get_request_information(
request_configuration
Expand All @@ -69,10 +70,11 @@ async def get(self,request_configuration: Optional[RequestConfiguration[External

async def post(self,body: CloudPcExternalPartner, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[CloudPcExternalPartner]:
"""
Create new navigation property to externalPartners for deviceManagement
Create a new cloudPcExternalPartner object.
param body: The request body
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[CloudPcExternalPartner]
Find more info here: https://learn.microsoft.com/graph/api/virtualendpoint-post-externalpartners?view=graph-rest-beta
"""
if body is None:
raise TypeError("body cannot be null.")
Expand All @@ -92,7 +94,7 @@ async def post(self,body: CloudPcExternalPartner, request_configuration: Optiona

def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[ExternalPartnersRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
"""
Get externalPartners from deviceManagement
Get a list of the cloudPcExternalPartner objects and their properties.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: RequestInformation
"""
Expand All @@ -103,7 +105,7 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi

def to_post_request_information(self,body: CloudPcExternalPartner, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
"""
Create new navigation property to externalPartners for deviceManagement
Create a new cloudPcExternalPartner object.
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 @@ -138,7 +140,7 @@ def count(self) -> CountRequestBuilder:
@dataclass
class ExternalPartnersRequestBuilderGetQueryParameters():
"""
Get externalPartners from deviceManagement
Get a list of the cloudPcExternalPartner objects and their properties.
"""
def get_query_parameter(self,original_name: str) -> str:
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,10 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query

async def get(self,request_configuration: Optional[RequestConfiguration[CloudPcExternalPartnerItemRequestBuilderGetQueryParameters]] = None) -> Optional[CloudPcExternalPartner]:
"""
Get externalPartners from deviceManagement
Read the properties and relationships of a cloudPcExternalPartner object.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[CloudPcExternalPartner]
Find more info here: https://learn.microsoft.com/graph/api/cloudpcexternalpartner-get?view=graph-rest-beta
"""
request_info = self.to_get_request_information(
request_configuration
Expand All @@ -70,10 +71,11 @@ async def get(self,request_configuration: Optional[RequestConfiguration[CloudPcE

async def patch(self,body: CloudPcExternalPartner, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[CloudPcExternalPartner]:
"""
Update the navigation property externalPartners in deviceManagement
Update the properties of a cloudPcExternalPartner object.
param body: The request body
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[CloudPcExternalPartner]
Find more info here: https://learn.microsoft.com/graph/api/cloudpcexternalpartner-update?view=graph-rest-beta
"""
if body is None:
raise TypeError("body cannot be null.")
Expand Down Expand Up @@ -104,7 +106,7 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo

def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[CloudPcExternalPartnerItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
"""
Get externalPartners from deviceManagement
Read the properties and relationships of a cloudPcExternalPartner object.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: RequestInformation
"""
Expand All @@ -115,7 +117,7 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi

def to_patch_request_information(self,body: CloudPcExternalPartner, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
"""
Update the navigation property externalPartners in deviceManagement
Update the properties of a cloudPcExternalPartner object.
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 @@ -148,7 +150,7 @@ class CloudPcExternalPartnerItemRequestBuilderDeleteRequestConfiguration(Request
@dataclass
class CloudPcExternalPartnerItemRequestBuilderGetQueryParameters():
"""
Get externalPartners from deviceManagement
Read the properties and relationships of a cloudPcExternalPartner object.
"""
def get_query_parameter(self,original_name: str) -> str:
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def by_fraud_protection_provider_id(self,fraud_protection_provider_id: str) -> F

async def get(self,request_configuration: Optional[RequestConfiguration[FraudProtectionProvidersRequestBuilderGetQueryParameters]] = None) -> Optional[FraudProtectionProviderCollectionResponse]:
"""
Get fraudProtectionProviders from identity
Represents entry point for fraud protection provider configurations for Microsoft Entra External ID tenants.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[FraudProtectionProviderCollectionResponse]
"""
Expand All @@ -69,10 +69,11 @@ async def get(self,request_configuration: Optional[RequestConfiguration[FraudPro

async def post(self,body: FraudProtectionProvider, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[FraudProtectionProvider]:
"""
Create new navigation property to fraudProtectionProviders for identity
Create a new fraudProtectionProvider object. You can create one of the following subtypes that are derived from fraudProtectionProvider.
param body: The request body
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[FraudProtectionProvider]
Find more info here: https://learn.microsoft.com/graph/api/riskpreventioncontainer-post-fraudprotectionproviders?view=graph-rest-beta
"""
if body is None:
raise TypeError("body cannot be null.")
Expand All @@ -92,7 +93,7 @@ async def post(self,body: FraudProtectionProvider, request_configuration: Option

def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[FraudProtectionProvidersRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
"""
Get fraudProtectionProviders from identity
Represents entry point for fraud protection provider configurations for Microsoft Entra External ID tenants.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: RequestInformation
"""
Expand All @@ -103,7 +104,7 @@ def to_get_request_information(self,request_configuration: Optional[RequestConfi

def to_post_request_information(self,body: FraudProtectionProvider, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
"""
Create new navigation property to fraudProtectionProviders for identity
Create a new fraudProtectionProvider object. You can create one of the following subtypes that are derived from fraudProtectionProvider.
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 @@ -138,7 +139,7 @@ def count(self) -> CountRequestBuilder:
@dataclass
class FraudProtectionProvidersRequestBuilderGetQueryParameters():
"""
Get fraudProtectionProviders from identity
Represents entry point for fraud protection provider configurations for Microsoft Entra External ID tenants.
"""
def get_query_parameter(self,original_name: str) -> str:
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query

async def get(self,request_configuration: Optional[RequestConfiguration[FraudProtectionProviderItemRequestBuilderGetQueryParameters]] = None) -> Optional[FraudProtectionProvider]:
"""
Get fraudProtectionProviders from identity
Represents entry point for fraud protection provider configurations for Microsoft Entra External ID tenants.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[FraudProtectionProvider]
"""
Expand Down Expand Up @@ -104,7 +104,7 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo

def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[FraudProtectionProviderItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
"""
Get fraudProtectionProviders from identity
Represents entry point for fraud protection provider configurations for Microsoft Entra External ID tenants.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: RequestInformation
"""
Expand Down Expand Up @@ -148,7 +148,7 @@ class FraudProtectionProviderItemRequestBuilderDeleteRequestConfiguration(Reques
@dataclass
class FraudProtectionProviderItemRequestBuilderGetQueryParameters():
"""
Get fraudProtectionProviders from identity
Represents entry point for fraud protection provider configurations for Microsoft Entra External ID tenants.
"""
def get_query_parameter(self,original_name: str) -> str:
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query

async def get(self,request_configuration: Optional[RequestConfiguration[RiskPreventionRequestBuilderGetQueryParameters]] = None) -> Optional[RiskPreventionContainer]:
"""
Get riskPrevention from identity
Represents the entry point for fraud and risk prevention configurations in Microsoft Entra External ID, including third-party provider settings.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[RiskPreventionContainer]
"""
Expand Down Expand Up @@ -105,7 +105,7 @@ def to_delete_request_information(self,request_configuration: Optional[RequestCo

def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[RiskPreventionRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
"""
Get riskPrevention from identity
Represents the entry point for fraud and risk prevention configurations in Microsoft Entra External ID, including third-party provider settings.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: RequestInformation
"""
Expand Down Expand Up @@ -158,7 +158,7 @@ class RiskPreventionRequestBuilderDeleteRequestConfiguration(RequestConfiguratio
@dataclass
class RiskPreventionRequestBuilderGetQueryParameters():
"""
Get riskPrevention from identity
Represents the entry point for fraud and risk prevention configurations in Microsoft Entra External ID, including third-party provider settings.
"""
def get_query_parameter(self,original_name: str) -> str:
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def by_user_processing_result_id(self,user_processing_result_id: str) -> UserPro

async def get(self,request_configuration: Optional[RequestConfiguration[ExecutionScopeRequestBuilderGetQueryParameters]] = None) -> Optional[UserProcessingResultCollectionResponse]:
"""
The unique identifier of the Microsoft Entra identity that last modified the workflow object.
The list of users that meet the workflowExecutionConditions of a workflow.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[UserProcessingResultCollectionResponse]
"""
Expand All @@ -68,7 +68,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Executio

def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[ExecutionScopeRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
"""
The unique identifier of the Microsoft Entra identity that last modified the workflow object.
The list of users that meet the workflowExecutionConditions of a workflow.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: RequestInformation
"""
Expand Down Expand Up @@ -99,7 +99,7 @@ def count(self) -> CountRequestBuilder:
@dataclass
class ExecutionScopeRequestBuilderGetQueryParameters():
"""
The unique identifier of the Microsoft Entra identity that last modified the workflow object.
The list of users that meet the workflowExecutionConditions of a workflow.
"""
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 get(self,request_configuration: Optional[RequestConfiguration[UserProcessingResultItemRequestBuilderGetQueryParameters]] = None) -> Optional[UserProcessingResult]:
"""
The unique identifier of the Microsoft Entra identity that last modified the workflow object.
The list of users that meet the workflowExecutionConditions of a workflow.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[UserProcessingResult]
"""
Expand All @@ -52,7 +52,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[UserProc

def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[UserProcessingResultItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
"""
The unique identifier of the Microsoft Entra identity that last modified the workflow object.
The list of users that meet the workflowExecutionConditions of a workflow.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: RequestInformation
"""
Expand All @@ -74,7 +74,7 @@ def with_url(self,raw_url: str) -> UserProcessingResultItemRequestBuilder:
@dataclass
class UserProcessingResultItemRequestBuilderGetQueryParameters():
"""
The unique identifier of the Microsoft Entra identity that last modified the workflow object.
The list of users that meet the workflowExecutionConditions of a workflow.
"""
def get_query_parameter(self,original_name: str) -> str:
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def by_user_processing_result_id(self,user_processing_result_id: str) -> UserPro

async def get(self,request_configuration: Optional[RequestConfiguration[ExecutionScopeRequestBuilderGetQueryParameters]] = None) -> Optional[UserProcessingResultCollectionResponse]:
"""
The unique identifier of the Microsoft Entra identity that last modified the workflow object.
The list of users that meet the workflowExecutionConditions of a workflow.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[UserProcessingResultCollectionResponse]
"""
Expand All @@ -68,7 +68,7 @@ async def get(self,request_configuration: Optional[RequestConfiguration[Executio

def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[ExecutionScopeRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
"""
The unique identifier of the Microsoft Entra identity that last modified the workflow object.
The list of users that meet the workflowExecutionConditions of a workflow.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: RequestInformation
"""
Expand Down Expand Up @@ -99,7 +99,7 @@ def count(self) -> CountRequestBuilder:
@dataclass
class ExecutionScopeRequestBuilderGetQueryParameters():
"""
The unique identifier of the Microsoft Entra identity that last modified the workflow object.
The list of users that meet the workflowExecutionConditions of a workflow.
"""
def get_query_parameter(self,original_name: str) -> str:
"""
Expand Down
Loading