Skip to content
Closed
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
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from .......models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class GetKnownIssuesByTimeRangeWithDaysInPastWithIncludeAllActiveGetResponse(BaseCollectionPaginationCountResponse):
class GetKnownIssuesByTimeRangeWithDaysInPastWithIncludeAllActiveGetResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[KnownIssue]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ......models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class FindByCatalogIdWithCatalogIDGetResponse(BaseCollectionPaginationCountResponse):
class FindByCatalogIdWithCatalogIDGetResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[Product]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ......models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class FindByKbNumberWithKbNumberGetResponse(BaseCollectionPaginationCountResponse):
class FindByKbNumberWithKbNumberGetResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[Product]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, D

async def delete(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> None:
"""
Delete a contentApproval object.
Delete a complianceChange object.
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-contentapproval-delete?view=graph-rest-beta
Find more info here: https://learn.microsoft.com/graph/api/windowsupdates-compliancechange-delete?view=graph-rest-beta
"""
request_info = self.to_delete_request_information(
request_configuration
Expand Down Expand Up @@ -96,7 +96,7 @@ async def patch(self,body: ComplianceChange, request_configuration: Optional[Req

def to_delete_request_information(self,request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
"""
Delete a contentApproval object.
Delete a complianceChange object.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: RequestInformation
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ...models.base_delta_function_response import BaseDeltaFunctionResponse

@dataclass
class DeltaGetResponse(BaseDeltaFunctionResponse):
class DeltaGetResponse(BaseDeltaFunctionResponse, Parsable):
# The value property
value: Optional[List[AdministrativeUnit]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ...models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class GetByIdsPostResponse(BaseCollectionPaginationCountResponse):
class GetByIdsPostResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[DirectoryObject]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from ....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class CheckMemberGroupsPostResponse(BaseCollectionPaginationCountResponse):
class CheckMemberGroupsPostResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[str]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from ....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class CheckMemberObjectsPostResponse(BaseCollectionPaginationCountResponse):
class CheckMemberObjectsPostResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[str]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from ....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class GetMemberGroupsPostResponse(BaseCollectionPaginationCountResponse):
class GetMemberGroupsPostResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[str]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from ....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class GetMemberObjectsPostResponse(BaseCollectionPaginationCountResponse):
class GetMemberObjectsPostResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[str]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, D

async def post(self,body: InvitePostRequestBody, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[InviteParticipantsOperation]:
"""
Invite participants to the active call. For more information about how to handle operations, see commsOperation.
Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.
param body: The request body
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[InviteParticipantsOperation]
Find more info here: https://learn.microsoft.com/graph/api/participant-invite?view=graph-rest-beta
Find more info here: https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-beta
"""
if body is None:
raise TypeError("body cannot be null.")
Expand All @@ -56,7 +56,7 @@ async def post(self,body: InvitePostRequestBody, request_configuration: Optional

def to_post_request_information(self,body: InvitePostRequestBody, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
"""
Invite participants to the active call. For more information about how to handle operations, see commsOperation.
Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.
param body: The request body
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: RequestInformation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class GetAllRecordingsmeetingOrganizerUserIdMeetingOrganizerUserIdWithStartDateTimeWithEndDateTimeGetResponse(BaseCollectionPaginationCountResponse):
class GetAllRecordingsmeetingOrganizerUserIdMeetingOrganizerUserIdWithStartDateTimeWithEndDateTimeGetResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[CallRecording]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class GetAllTranscriptsmeetingOrganizerUserIdMeetingOrganizerUserIdWithStartDateTimeWithEndDateTimeGetResponse(BaseCollectionPaginationCountResponse):
class GetAllTranscriptsmeetingOrganizerUserIdMeetingOrganizerUserIdWithStartDateTimeWithEndDateTimeGetResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[CallTranscript]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ......models.base_delta_function_response import BaseDeltaFunctionResponse

@dataclass
class DeltaGetResponse(BaseDeltaFunctionResponse):
class DeltaGetResponse(BaseDeltaFunctionResponse, Parsable):
# The value property
value: Optional[List[CallRecording]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ......models.base_delta_function_response import BaseDeltaFunctionResponse

@dataclass
class DeltaGetResponse(BaseDeltaFunctionResponse):
class DeltaGetResponse(BaseDeltaFunctionResponse, Parsable):
# The value property
value: Optional[List[CallTranscript]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ...models.base_delta_function_response import BaseDeltaFunctionResponse

@dataclass
class DeltaGetResponse(BaseDeltaFunctionResponse):
class DeltaGetResponse(BaseDeltaFunctionResponse, Parsable):
# The value property
value: Optional[List[Application]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ...models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class GetByIdsPostResponse(BaseCollectionPaginationCountResponse):
class GetByIdsPostResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[DirectoryObject]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from ....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class CheckMemberGroupsPostResponse(BaseCollectionPaginationCountResponse):
class CheckMemberGroupsPostResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[str]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from ....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class CheckMemberObjectsPostResponse(BaseCollectionPaginationCountResponse):
class CheckMemberObjectsPostResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[str]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from ....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class GetMemberGroupsPostResponse(BaseCollectionPaginationCountResponse):
class GetMemberGroupsPostResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[str]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from ....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class GetMemberObjectsPostResponse(BaseCollectionPaginationCountResponse):
class GetMemberObjectsPostResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[str]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ........models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class FilterOperatorsGetResponse(BaseCollectionPaginationCountResponse):
class FilterOperatorsGetResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[FilterOperatorSchema]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ........models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class FunctionsGetResponse(BaseCollectionPaginationCountResponse):
class FunctionsGetResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[AttributeMappingFunctionSchema]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ........models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class FilterOperatorsGetResponse(BaseCollectionPaginationCountResponse):
class FilterOperatorsGetResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[FilterOperatorSchema]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ........models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class FunctionsGetResponse(BaseCollectionPaginationCountResponse):
class FunctionsGetResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[AttributeMappingFunctionSchema]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ async def delete(self,request_configuration: Optional[RequestConfiguration[Query

async def get(self,request_configuration: Optional[RequestConfiguration[SignInItemRequestBuilderGetQueryParameters]] = None) -> Optional[SignIn]:
"""
Get a signIn object that contains a specific user sign-in event for your tenant that includes sign-ins where a user is asked to enter a username or password, and session tokens.
Retrieve a specific Microsoft Entra user sign-in event for your tenant. Sign-ins that are interactive in nature (where a username/password is passed as part of auth token) and successful federated sign-ins are currently included in the sign-in logs.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[SignIn]
Find more info here: https://learn.microsoft.com/graph/api/signin-get?view=graph-rest-beta
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[SignInItemRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
"""
Get a signIn object that contains a specific user sign-in event for your tenant that includes sign-ins where a user is asked to enter a username or password, and session tokens.
Retrieve a specific Microsoft Entra user sign-in event for your tenant. Sign-ins that are interactive in nature (where a username/password is passed as part of auth token) and successful federated sign-ins are currently included in the sign-in logs.
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 SignInItemRequestBuilderDeleteRequestConfiguration(RequestConfiguration[Qu
@dataclass
class SignInItemRequestBuilderGetQueryParameters():
"""
Get a signIn object that contains a specific user sign-in event for your tenant that includes sign-ins where a user is asked to enter a username or password, and session tokens.
Retrieve a specific Microsoft Entra user sign-in event for your tenant. Sign-ins that are interactive in nature (where a username/password is passed as part of auth token) and successful federated sign-ins are currently included in the sign-in logs.
"""
def get_query_parameter(self,original_name: str) -> str:
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class GetStaffAvailabilityPostResponse(BaseCollectionPaginationCountResponse):
class GetStaffAvailabilityPostResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[StaffAvailabilityItem]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ...models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class AllMessagesGetResponse(BaseCollectionPaginationCountResponse):
class AllMessagesGetResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[ChatMessage]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ...models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class GetAllMessagesGetResponse(BaseCollectionPaginationCountResponse):
class GetAllMessagesGetResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[ChatMessage]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ...models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class GetAllRetainedMessagesGetResponse(BaseCollectionPaginationCountResponse):
class GetAllRetainedMessagesGetResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[ChatMessage]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from .....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class AddPostResponse(BaseCollectionPaginationCountResponse):
class AddPostResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[ActionResultPart]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from .....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class RemovePostResponse(BaseCollectionPaginationCountResponse):
class RemovePostResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[ActionResultPart]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from .....models.base_delta_function_response import BaseDeltaFunctionResponse

@dataclass
class DeltaGetResponse(BaseDeltaFunctionResponse):
class DeltaGetResponse(BaseDeltaFunctionResponse, Parsable):
# The value property
value: Optional[List[ChatMessage]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from .......models.base_delta_function_response import BaseDeltaFunctionResponse

@dataclass
class DeltaGetResponse(BaseDeltaFunctionResponse):
class DeltaGetResponse(BaseDeltaFunctionResponse, Parsable):
# The value property
value: Optional[List[ChatMessage]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class GetDirectRoutingCallsWithFromDateTimeWithToDateTimeGetResponse(BaseCollectionPaginationCountResponse):
class GetDirectRoutingCallsWithFromDateTimeWithToDateTimeGetResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[DirectRoutingLogRow]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class GetPstnBlockedUsersLogWithFromDateTimeWithToDateTimeGetResponse(BaseCollectionPaginationCountResponse):
class GetPstnBlockedUsersLogWithFromDateTimeWithToDateTimeGetResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[PstnBlockedUsersLogRow]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class GetPstnCallsWithFromDateTimeWithToDateTimeGetResponse(BaseCollectionPaginationCountResponse):
class GetPstnCallsWithFromDateTimeWithToDateTimeGetResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[PstnCallLogRow]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class GetPstnOnlineMeetingDialoutReportWithFromDateTimeWithToDateTimeGetResponse(BaseCollectionPaginationCountResponse):
class GetPstnOnlineMeetingDialoutReportWithFromDateTimeWithToDateTimeGetResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[PstnOnlineMeetingDialoutReport]] = None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ....models.base_collection_pagination_count_response import BaseCollectionPaginationCountResponse

@dataclass
class GetSmsLogWithFromDateTimeWithToDateTimeGetResponse(BaseCollectionPaginationCountResponse):
class GetSmsLogWithFromDateTimeWithToDateTimeGetResponse(BaseCollectionPaginationCountResponse, Parsable):
# The value property
value: Optional[List[SmsLogRow]] = None

Expand Down
Loading